X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/921d9418e2e831eddc241cb51192e734257cb4b3..0bbe61b8c18a1795189f0cf73cc61c14a0fb846d:/src/dfb/settings.cpp diff --git a/src/dfb/settings.cpp b/src/dfb/settings.cpp index 2f4752a247..2e1fe2058f 100644 --- a/src/dfb/settings.cpp +++ b/src/dfb/settings.cpp @@ -23,8 +23,6 @@ #include "wx/gdicmn.h" #endif -#include "wx/dfb/private.h" - wxColour wxSystemSettingsNative::GetColour(wxSystemColour WXUNUSED(index)) { @@ -60,7 +58,7 @@ wxFont wxSystemSettingsNative::GetFont(wxSystemFont index) } default: - wxFAIL_MSG( _T("unknown font type") ); + wxFAIL_MSG( "unknown font type" ); return wxNullFont; } } @@ -87,7 +85,7 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index, #endif default: - wxFAIL_MSG( _T("unsupported metric") ); + wxFAIL_MSG( "unsupported metric" ); return -1; } } @@ -102,7 +100,7 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) return false; default: - wxFAIL_MSG( _T("unknown feature") ); + wxFAIL_MSG( "unknown feature" ); return false; } }