2011-06-15 12:50 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idechangelog.prg
! Fixed: a silly comparison in prev commit.
This commit is contained in:
@@ -16,6 +16,10 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-06-15 12:50 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbide/idechangelog.prg
|
||||
! Fixed: a silly comparison in prev commit.
|
||||
|
||||
2011-06-15 11:53 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbide/changelog.ui
|
||||
* contrib/hbide/idechangelog.prg
|
||||
|
||||
@@ -237,7 +237,7 @@ METHOD IdeChangeLog:execEvent( cEvent, p )
|
||||
IF ! empty( cTmp := ::oUI:q_comboTitle:currentText() )
|
||||
::addToLog( { "Title", cTmp, "" } )
|
||||
::refresh()
|
||||
IF ascan( ::oINI:aLogTitle, {|e| upper( e ) == cTmp } ) == 0
|
||||
IF ascan( ::oINI:aLogTitle, {|e| upper( e ) == upper( cTmp ) } ) == 0
|
||||
aadd( ::oINI:aLogTitle, cTmp )
|
||||
::oUI:q_comboTitle:insertItem( 0,cTmp )
|
||||
ENDIF
|
||||
@@ -247,7 +247,7 @@ METHOD IdeChangeLog:execEvent( cEvent, p )
|
||||
IF ! empty( cTmp := ::oUI:q_comboSources:currentText() )
|
||||
::addToLog( { "Source", cTmp, "" } )
|
||||
::refresh()
|
||||
IF ascan( ::oINI:aLogSources, {|e| upper( e ) == cTmp } ) == 0
|
||||
IF ascan( ::oINI:aLogSources, {|e| upper( e ) == upper( cTmp ) } ) == 0
|
||||
aadd( ::oINI:aLogSources, cTmp )
|
||||
::oUI:q_comboSources:insertItem( 0,cTmp )
|
||||
ENDIF
|
||||
|
||||
Reference in New Issue
Block a user