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