* Added new Forums GUI to Unfinished Applications.

* added rsforums.h interface file.
 * at exit() we now call rsGlobalShutDown() to stop Upnp properly.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@494 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-04-09 12:57:26 +00:00
parent 94371600be
commit 9c015a22c2
8 changed files with 1912 additions and 13 deletions

View file

@ -91,7 +91,6 @@
* #define RS_RELEASE_VERSION 1
****/
#define RS_RELEASE_VERSION 1
/** Constructor */
MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
@ -510,14 +509,14 @@ void MainWindow::doQuit()
if (confirm->result() == QDialog::Accepted)
{
rsicontrol->ConfigFinalSave();
rsicontrol->rsGlobalShutDown();
qApp->quit();
} else {
delete confirm;
}
} else {
rsicontrol->ConfigFinalSave();
rsicontrol->rsGlobalShutDown();
qApp->quit();
}
}