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:
Pritpal Bedi
2011-06-15 19:52:38 +00:00
parent a95eccfd4d
commit f69e9a36ae
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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