]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix restore crash
authorKern Sibbald <kern@sibbald.com>
Tue, 27 Feb 2007 17:15:14 +0000 (17:15 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 27 Feb 2007 17:15:14 +0000 (17:15 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4276 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/qt-console/README
bacula/src/qt-console/restore/restore.cpp

index 90b0baca34fb0cb612f6197ef04d1fdec6a3ba8e..eb91670ffbe0acc3bcb96052235e84d0cc17fcf3 100644 (file)
@@ -51,9 +51,10 @@ Items not implemented:
 - The Label menu bar item, prints on the shell window what you entered.
 - The Run menu bar item, prints on the console window what you entered.
 - The Restore menu bar item, brings up dialog, then when OK is
-  clicked, it goes on to the next dialog (oops, it seems to crash
-  now -- will fix soon).
-
+  clicked, it goes on to the next dialog, which is meant to be
+  a tree view, but for the moment does nothing ...  It is a bit
+  ugly. Cancelling it should get you back to the normal command prompt.
+         
 Not working:
 - The left selection window and the right window (where the console
   is) are dockable windows so should be movable once they are properly
index f6185b746b2838e6165ffa736475826112b91823..9addf96d30179fdef5c7d7bea31231188ba50f40 100644 (file)
@@ -70,8 +70,8 @@ void prerestoreDialog::accept()
 
    m_console->write(cmd);
    m_console->display_text(cmd);
-   delete this;
    new restoreDialog(m_console);
+   delete this;
 }