X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0b4f47a319cfaa434e00025aa779e407fbacee23..adb799d6ef8e1ba754ab08b26e64fa40219f95f8:/src/common/fontmap.cpp diff --git a/src/common/fontmap.cpp b/src/common/fontmap.cpp index 8be47e51c2..0772cf2839 100644 --- a/src/common/fontmap.cpp +++ b/src/common/fontmap.cpp @@ -175,6 +175,7 @@ wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive) // chosen to suppress this the last time) encoding = wxFONTENCODING_SYSTEM; } +#if wxUSE_CHOICEDLG else if ( (encoding == wxFONTENCODING_SYSTEM) && interactive ) { // prepare the dialog data @@ -233,6 +234,9 @@ wxFontMapper::CharsetToEncoding(const wxString& charset, bool interactive) } #endif // wxUSE_CONFIG } +#else + wxUnusedVar(interactive); +#endif // wxUSE_CHOICEDLG return (wxFontEncoding)encoding; }