]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/registry.cpp
1. Pause()/Resume() implemented for wxMSW
[wxWidgets.git] / src / msw / registry.cpp
index f9431a9d1f22f74a8d530b12c3f6f0080d3497ca..f4cdd7b3a5d48216eb32ee18d5910cadfe61776d 100644 (file)
@@ -522,6 +522,9 @@ bool wxRegKey::HasValue(const char *szValue) const
 // returns TRUE if this key has any subkeys
 bool wxRegKey::HasSubkeys() const
 {
+  // suppress possible messages from GetFirstKey()
+  wxLogNull nolog;
+  
   // just call GetFirstKey with dummy parameters
   wxString str;
   long     l;
@@ -531,6 +534,9 @@ bool wxRegKey::HasSubkeys() const
 // returns TRUE if given subkey exists
 bool wxRegKey::HasSubKey(const char *szKey) const
 {
+  // this function should be silent, so suppress possible messages from Open()
+  wxLogNull nolog;
+  
   if ( CONST_CAST Open() )
     return KeyExists(m_hKey, szKey);
   else