]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/confbase.h
Removed dysfunctional wxPGPropery::PrepareValueForDialogEditing(); Replaced its funct...
[wxWidgets.git] / include / wx / confbase.h
index 022fb648576e592a4dd79032657b33dba73db899..91871da380e1762fe05e7ca2d6ce2143cf6f920d 100644 (file)
@@ -276,6 +276,12 @@ public:
   // we also have to provide specializations for other types which we want to
   // handle using the specialized DoWriteXXX() instead of the generic template
   // version below
+  bool Write(const wxString& key, char value)
+    { return DoWriteLong(key, value); }
+
+  bool Write(const wxString& key, unsigned char value)
+    { return DoWriteLong(key, value); }
+
   bool Write(const wxString& key, short value)
     { return DoWriteLong(key, value); }
 
@@ -428,18 +434,6 @@ private:
 };
 
 
-// ----------------------------------------------------------------------------
-// the native wxConfigBase implementation
-// ----------------------------------------------------------------------------
-
-// under Windows we prefer to use the native implementation
-// wxIniConfig isn't native anywhere after droping win16 in wxWidgets 2.6
-#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
-    #define wxConfig  wxRegConfig
-#else // either we're under Unix or wish to use files even under Windows
-  #define wxConfig  wxFileConfig
-#endif
-
 #endif // wxUSE_CONFIG
 
 /*