From f69e9a36ae7bbe2d48257d2a07c4a603924ddcaa Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Wed, 15 Jun 2011 19:52:38 +0000 Subject: [PATCH] 2011-06-15 12:50 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbide/idechangelog.prg ! Fixed: a silly comparison in prev commit. --- harbour/ChangeLog | 4 ++++ harbour/contrib/hbide/idechangelog.prg | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3df3b7e580..b8ca032ab0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/hbide/idechangelog.prg b/harbour/contrib/hbide/idechangelog.prg index e59890e187..d28447865b 100644 --- a/harbour/contrib/hbide/idechangelog.prg +++ b/harbour/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