git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21914
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
m_Table[out_tbl[i]] = (tchar)(128 + i);
m_UnicodeInput = TRUE;
- return TRUE;
}
-
- else
+ else // input !Unicode
{
if ((in_tbl = GetEncTable(input_enc)) == NULL) return FALSE;
if (output_enc != wxFONTENCODING_UNICODE)
}
// FIXME: write a substitute for bsearch
#ifndef __WXWINCE__
- else
+ else // output !Unicode
{
CharsetItem *rev = BuildReverseTable(out_tbl);
CharsetItem *item;
}
delete[] rev;
- return TRUE;
}
-#endif
- return TRUE;
+#endif // !__WXWINCE__
}
+
+ return TRUE;
}