Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f48025d

Browse files
committed
lcb: Update remaining extensions to use new cased names
This patch updates the remaining extensions (compiled when running tests) to ensure they conform to the lower case namespace requirement.
1 parent c7b53c4 commit f48025d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

extensions/widgets/checkbox/checkbox.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

extensions/widgets/list/list.lcb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

extensions/widgets/pinkcircle/pinkcircle.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for more details.
1515
You should have received a copy of the GNU General Public License
1616
along 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

2020
use com.livecode.canvas
2121

extensions/widgets/progressbar/progressbar.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
1616
along 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

extensions/widgets/pushbutton/pushbutton.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ widget com.livecode.widget.pushbutton
2727
use com.livecode.canvas
2828
use com.livecode.widget
2929
use com.livecode.engine
30-
use com.livecode.library.iconSVG
30+
use com.livecode.library.iconsvg
3131
use com.livecode.library.widgetutils
3232
--
3333

0 commit comments

Comments
 (0)