From: Václav Slavík Date: Thu, 28 Sep 2006 15:26:56 +0000 (+0000) Subject: don't hardcode the theme, it prevents WXTHEME env.var. from working X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8e3e26d3757424828079fb808690ca529790e59b don't hardcode the theme, it prevents WXTHEME env.var. from working git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/dfb/app.cpp b/src/dfb/app.cpp index 4618b16e4b..ea4764ccbc 100644 --- a/src/dfb/app.cpp +++ b/src/dfb/app.cpp @@ -50,9 +50,6 @@ bool wxApp::Initialize(int& argc, wxChar **argv) if ( !wxIDirectFB::Get() ) return false; - #warning "FIXME: theme override is temporary" - wxTheme::Set(wxTheme::Create(_T("gtk"))); - return true; }