]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/registry.cpp
wxCocoa: Better icon support
[wxWidgets.git] / src / msw / registry.cpp
index 8305c63eb8f03e0233ff9cbe413eec135d388f2e..26657e9c5d149d9c6f49f87ecf5ae072bc80b5d9 100644 (file)
@@ -683,7 +683,9 @@ bool wxRegKey::DeleteSelf()
   Close();
 
   m_dwLastError = RegDeleteKey((HKEY) m_hRootKey, m_strKey);
-  if ( m_dwLastError != ERROR_SUCCESS ) {
+  // deleting a key which doesn't exist is not considered an error
+  if ( m_dwLastError != ERROR_SUCCESS &&
+          m_dwLastError != ERROR_FILE_NOT_FOUND ) {
     wxLogSysError(m_dwLastError, _("Can't delete key '%s'"),
                   GetName().c_str());
     return FALSE;