]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/config.cpp
don't inherit font from the parent by default
[wxWidgets.git] / src / common / config.cpp
index 9b5612a4b0a2a7e976c009a278d5312172484c64..535a272f1ec2794b0c93c80ed18448f2a143e4cb 100644 (file)
@@ -88,11 +88,7 @@ wxConfigBase *wxConfigBase::Create()
   if ( ms_bAutoCreate && ms_pConfig == NULL ) {
     ms_pConfig =
     #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
-      #ifdef __WIN32__
         new wxRegConfig(wxTheApp->GetAppName(), wxTheApp->GetVendorName());
-      #else  //WIN16
-        new wxIniConfig(wxTheApp->GetAppName(), wxTheApp->GetVendorName());
-      #endif
     #else // either we're under Unix or wish to use files even under Windows
       new wxFileConfig(wxTheApp->GetAppName());
     #endif