From f5086252745a82a4b239e45045e9468b72a8b15c Mon Sep 17 00:00:00 2001 From: Kenny Shields Date: Sat, 23 Aug 2014 02:48:26 -0400 Subject: [PATCH] Add missing columnlist method comments --- objects/columnlist.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/objects/columnlist.lua b/objects/columnlist.lua index 273942b..a79b929 100644 --- a/objects/columnlist.lua +++ b/objects/columnlist.lua @@ -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]