From eb95c1dff274f1d7c4a653da1b4f8ef19cf89ab7 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 6 Nov 2012 21:33:52 +0000 Subject: [PATCH] 2012-11-06 22:33 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/gtwvg/combobox.prg * contrib/gtwvg/listbox.prg * contrib/gtwvg/mle.prg * contrib/gtwvg/sle.prg * contrib/gtwvg/statbar.prg * contrib/gtwvg/toolbar.prg ! fixed some casing wrongly uppercased by hbformat in the past. --- harbour/ChangeLog | 10 ++++++++++ harbour/contrib/gtwvg/combobox.prg | 2 +- harbour/contrib/gtwvg/listbox.prg | 2 +- harbour/contrib/gtwvg/mle.prg | 4 ++-- harbour/contrib/gtwvg/sle.prg | 2 +- harbour/contrib/gtwvg/statbar.prg | 2 +- harbour/contrib/gtwvg/toolbar.prg | 2 +- 7 files changed, 17 insertions(+), 7 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3aff128c87..d284893677 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,16 @@ The license applies to all entries newer than 2009-04-28. */ +2012-11-06 22:33 UTC+0100 Viktor Szakats (harbour syenar.net) + * contrib/gtwvg/combobox.prg + * contrib/gtwvg/listbox.prg + * contrib/gtwvg/mle.prg + * contrib/gtwvg/sle.prg + * contrib/gtwvg/statbar.prg + * contrib/gtwvg/toolbar.prg + ! fixed some casing wrongly uppercased by hbformat in + the past. + 2012-11-06 22:16 UTC+0100 Viktor Szakats (harbour syenar.net) * contrib/hbformat/hbfmtcls.prg * made two code lines more hbformat friendly diff --git a/harbour/contrib/gtwvg/combobox.prg b/harbour/contrib/gtwvg/combobox.prg index 920ae5e661..ecee83f2aa 100644 --- a/harbour/contrib/gtwvg/combobox.prg +++ b/harbour/contrib/gtwvg/combobox.prg @@ -96,7 +96,7 @@ CREATE CLASS WvgComboBox INHERIT WvgWindow, WvgDataRef METHOD sleSize() METHOD addItem( cItem ) - METHOD CLEAR() INLINE ::sendCBMessage( CB_RESETCONTENT ) + METHOD clear() INLINE ::sendCBMessage( CB_RESETCONTENT ) METHOD delItem( nIndex ) INLINE ::sendCBMessage( CB_DELETESTRING, nIndex - 1 ) METHOD getItem( nIndex ) INLINE ::sendCBMessage( CB_GETLBTEXT, nIndex - 1 ) METHOD insItem( nIndex, cItem ) INLINE ::sendCBMessage( CB_INSERTSTRING, nIndex - 1, cItem ) diff --git a/harbour/contrib/gtwvg/listbox.prg b/harbour/contrib/gtwvg/listbox.prg index d6db19419d..3eb223f4d2 100644 --- a/harbour/contrib/gtwvg/listbox.prg +++ b/harbour/contrib/gtwvg/listbox.prg @@ -100,7 +100,7 @@ CREATE CLASS WvgListBox INHERIT WvgWindow, WvgDataRef METHOD setTopItem( nIndex ) INLINE ::sendMessage( LB_SETTOPINDEX, nIndex - 1, 0 ) METHOD addItem( cItem ) INLINE Wvg_SendMessageText( ::hWnd, LB_ADDSTRING, 0, cItem ) - METHOD CLEAR() + METHOD clear() METHOD delItem( nIndex ) INLINE ::sendMessage( LB_DELETESTRING, nIndex - 1, 0 ) METHOD getItem( nIndex ) INLINE Wvg_LBGetText( ::hWnd, nIndex - 1 ) METHOD getTabstops() VIRTUAL diff --git a/harbour/contrib/gtwvg/mle.prg b/harbour/contrib/gtwvg/mle.prg index 7b5429c130..beb5134743 100644 --- a/harbour/contrib/gtwvg/mle.prg +++ b/harbour/contrib/gtwvg/mle.prg @@ -99,11 +99,11 @@ CREATE CLASS WvgMLE INHERIT WvgWindow, WvgDataRef METHOD destroy() METHOD handleEvent( nMessage, aNM ) - METHOD CLEAR() + METHOD clear() METHOD copyMarked() METHOD cutMarked() METHOD deleteMarked() VIRTUAL - METHOD DELETE() VIRTUAL + METHOD delete() VIRTUAL METHOD pasteMarked() VIRTUAL METHOD queryFirstChar() VIRTUAL METHOD queryMarked() VIRTUAL diff --git a/harbour/contrib/gtwvg/sle.prg b/harbour/contrib/gtwvg/sle.prg index c8ba9a09fd..0e0503c9de 100644 --- a/harbour/contrib/gtwvg/sle.prg +++ b/harbour/contrib/gtwvg/sle.prg @@ -93,7 +93,7 @@ CREATE CLASS WvgSLE INHERIT WvgWindow, WvgDataRef METHOD destroy() METHOD handleEvent( nMessage, aNM ) - METHOD CLEAR() + METHOD clear() METHOD copyMarked() METHOD cutMarked() METHOD delMarked() VIRTUAL diff --git a/harbour/contrib/gtwvg/statbar.prg b/harbour/contrib/gtwvg/statbar.prg index e623fdb0f4..2b98f4768d 100644 --- a/harbour/contrib/gtwvg/statbar.prg +++ b/harbour/contrib/gtwvg/statbar.prg @@ -100,7 +100,7 @@ CREATE CLASS WvgStatusBar INHERIT WvgWindow /* WvgActiveXControl */ METHOD addItem( cCaption, xImage, cDLL, nStyle, cKey, nMode ) METHOD delItem( nItemORcKey ) METHOD getItem( nItemORcKey ) - METHOD CLEAR() + METHOD clear() METHOD panelClick( xParam ) SETGET METHOD panelDblClick( xParam ) SETGET diff --git a/harbour/contrib/gtwvg/toolbar.prg b/harbour/contrib/gtwvg/toolbar.prg index d82c46eb3d..b786ce3dfc 100644 --- a/harbour/contrib/gtwvg/toolbar.prg +++ b/harbour/contrib/gtwvg/toolbar.prg @@ -112,7 +112,7 @@ CREATE CLASS WvgToolBar INHERIT WvgWindow /*WvgActiveXControl*/ METHOD delItem() METHOD getItem() - METHOD CLEAR() + METHOD clear() METHOD customize() METHOD loadImageSet() METHOD saveToolbar()