Kaydet (Commit) 056f15c2 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: dangling else

Change-Id: I263d35464ceaa7374e8ca94f7e72e56ee33aab53
üst 7617e9c4
......@@ -103,7 +103,7 @@ IndexEntrySupplier_asian::getIndexCharacter( const OUString& rIndexEntry,
if ( rLocale.Language == "ko" ) {
if ( rAlgorithm == "dict" )
func = get_indexdata_ko_dict;
} else if ( rLocale.Language == "zh" )
} else if ( rLocale.Language == "zh" ) {
if ( rAlgorithm == "pinyin" )
func = get_indexdata_zh_pinyin;
else if ( rAlgorithm == "radical" )
......@@ -112,6 +112,7 @@ IndexEntrySupplier_asian::getIndexCharacter( const OUString& rIndexEntry,
func = get_indexdata_zh_stroke;
else if ( rAlgorithm == "zhuyin" )
func = get_indexdata_zh_zhuyin;
}
}
#endif
if (func) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment