This repository was archived by the owner on Aug 31, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
2020
2121
2222-- declaring the extension as a widget, followed by the identifier
23- widget com.livecode.widget.checkBox
23+ widget com.livecode.widget.checkbox
2424--
2525
2626-- dependancy declarations
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ public handler OnPaint() returns nothing
118118 variable tListItem as Array
119119 put the empty array into tListItem
120120
121- variable tx as Integer
122- put 1 into tx
121+ variable tX as Integer
122+ put 1 into tX
123123
124124 put the floor of mViewTopPosition / mRowHeight into mFirstListItem
125125 if mFirstListItem < 1 then
@@ -131,8 +131,8 @@ public handler OnPaint() returns nothing
131131 subtract tTopOffset from tTop
132132
133133 //log "Start Index: %@ | top offset: %@" with [mFirstListItem,tTopOffset]
134- repeat with tx from mFirstListItem up to the number of elements in mListData
135- put element tx of mListData into tListItem
134+ repeat with tX from mFirstListItem up to the number of elements in mListData
135+ put element tX of mListData into tListItem
136136 put mMargin into tLeft
137137 // Draw the background
138138
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ for more details.
1515You should have received a copy of the GNU General Public License
1616along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
1717
18- widget com.livecode.extensions.beaumont.pinkCircle
18+ widget com.livecode.extensions.beaumont.pinkcircle
1919
2020use com.livecode.canvas
2121
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
1616along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
1717
1818-- declaring extension as widget, followed by identifier
19- widget com.livecode.widget.progressBar
19+ widget com.livecode.widget.progressbar
2020--
2121
2222-- adding metadata to ensure extension displays correctly in livecode
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ widget com.livecode.widget.pushbutton
2727use com.livecode.canvas
2828use com.livecode.widget
2929use com.livecode.engine
30- use com.livecode.library.iconSVG
30+ use com.livecode.library.iconsvg
3131use com.livecode.library.widgetutils
3232--
3333
You can’t perform that action at this time.
0 commit comments