]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/registry.cpp
typo in AutosizeRowOrCol fixed (bug 115437)
[wxWidgets.git] / src / msw / registry.cpp
index c67b5ba3d523b57780a07f4e3c737f856587e8dc..978d7ee4faa7e2464f44185fd866e380ce4ff808 100644 (file)
@@ -620,8 +620,9 @@ bool wxRegKey::DeleteSelf()
   // prevent a buggy program from erasing one of the root registry keys or an
   // immediate subkey (i.e. one which doesn't have '\\' inside) of any other
   // key except HKCR (HKCR has some "deleteable" subkeys)
-  if ( m_strKey.IsEmpty() || (m_hRootKey != HKCR &&
-       m_strKey.Find(REG_SEPARATOR) == wxNOT_FOUND) ) {
+  if ( m_strKey.IsEmpty() ||
+       ((m_hRootKey != (WXHKEY) aStdKeys[HKCR].hkey) &&
+        (m_strKey.Find(REG_SEPARATOR) == wxNOT_FOUND)) ) {
       wxLogError(_("Registry key '%s' is needed for normal system operation,\ndeleting it will leave your system in unusable state:\noperation aborted."), GetFullName(this));
 
       return FALSE;