]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/registry.h
Added wx/listbase.h with wxListCtrl types, so we can
[wxWidgets.git] / include / wx / msw / registry.h
index 76980b5f649139e45aedd8066fc1c40baa24d61a..5e995ad25b8655741437a2592c2f80bcd7a713a9 100644 (file)
@@ -168,8 +168,11 @@ public:
   wxRegKey& operator=(long lValue)
     { SetValue(NULL, lValue); return *this; }
 
-    // conversion operators query the default value of the key
-  operator wxString() const;
+    // query the default value of the key: implicitly or explicitly
+  wxString QueryDefaultValue() const;
+  operator wxString() const { return QueryDefaultValue(); }
+
+    // named values
 
     // set the string value
   bool  SetValue(const wxChar *szValue, const wxString& strValue);