Add missing columnlist method comments

This commit is contained in:
Kenny Shields 2014-08-23 02:48:26 -04:00
parent 925376f00f
commit f508625274

View File

@ -823,6 +823,10 @@ function newobject:SetRowColumnData(rowid, columndata)
end
--[[---------------------------------------------------------
- func: GetTotalColumnWidth()
- desc: gets the combined width of the objects columns
--]]---------------------------------------------------------
function newobject:GetTotalColumnWidth()
local width = 0
@ -835,6 +839,10 @@ function newobject:GetTotalColumnWidth()
end
--[[---------------------------------------------------------
- func: GetColumnWidth(id)
- desc: gets the width of the specified column
--]]---------------------------------------------------------
function newobject:GetColumnWidth(id)
local column = self.children[id]