]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/registry.cpp
make the second parameter to wxTreeCtrl.GetFirstChild optional
[wxWidgets.git] / src / msw / registry.cpp
index b0c061c1d0f5c53fbbe1940c8af69a6a6a43b775..ca0f62ace8f3530bf512b012e3ee5a83b07f31c3 100644 (file)
@@ -316,7 +316,7 @@ bool wxRegKey::GetKeyInfo(size_t *pnSubKeys,
 #if defined(__WIN32__) && !defined(__TWIN32__)
 
     // old gcc headers incorrectly prototype RegQueryInfoKey()
-#ifdef __GNUWIN32_OLD__
+#if defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__)
     #define REG_PARAM   (size_t *)
 #else
     #define REG_PARAM   (LPDWORD)
@@ -930,7 +930,7 @@ bool wxRegKey::SetValue(const wxChar *szValue, const wxString& strValue)
   return FALSE;
 }
 
-wxRegKey::operator wxString() const
+wxString wxRegKey::QueryDefaultValue() const
 {
   wxString str;
   QueryValue(NULL, str);