fix incorrect warning with intentionally blank strings
This commit is contained in:
@@ -595,8 +595,7 @@ void LanguagesDlg::OnBnClickedCheckLanguage()
|
||||
{
|
||||
const RString &sID = value->first;
|
||||
RString sCurrentLanguage;
|
||||
ini2.GetValue( sSection, sID, sCurrentLanguage );
|
||||
if( !sCurrentLanguage.empty() )
|
||||
if( ini2.GetValue(sSection, sID, sCurrentLanguage) )
|
||||
continue;
|
||||
|
||||
asList.push_back( sID );
|
||||
|
||||
Reference in New Issue
Block a user