fix
This commit is contained in:
parent
9e0576587b
commit
00b8acdf49
1 changed files with 2 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
// Need a global reference to process net thread
|
// Need a global reference for the notifications to find the GUI
|
||||||
BitcoinGUI *guiref;
|
BitcoinGUI *guiref;
|
||||||
|
|
||||||
int MyMessageBox(const std::string& message, const std::string& caption, int style, wxWindow* parent, int x, int y)
|
int MyMessageBox(const std::string& message, const std::string& caption, int style, wxWindow* parent, int x, int y)
|
||||||
|
@ -83,11 +83,10 @@ int main(int argc, char *argv[])
|
||||||
window.setModel(&model);
|
window.setModel(&model);
|
||||||
|
|
||||||
window.show();
|
window.show();
|
||||||
guiref = 0;
|
|
||||||
|
|
||||||
/* Depending on settings: QApplication::setQuitOnLastWindowClosed(false); */
|
|
||||||
int retval = app.exec();
|
int retval = app.exec();
|
||||||
|
|
||||||
|
guiref = 0;
|
||||||
Shutdown(NULL);
|
Shutdown(NULL);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
|
|
Loading…
Reference in a new issue