Added Quick Start Wizard

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1982 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-01-08 13:00:00 +00:00
parent 6f176c620b
commit b05dbc80e4
9 changed files with 1965 additions and 0 deletions

View file

@ -39,6 +39,7 @@
#include "MessengerWindow.h"
#include "HelpDialog.h"
#include "AboutDialog.h"
#include "QuickStartWizard.h"
#include "gui/TurtleRouterDialog.h"
@ -606,6 +607,12 @@ void MainWindow::showHelpDialog(const QString &topic)
helpBrowser->showWindow(topic);
}
void MainWindow::on_actionQuick_Start_Wizard_activated()
{
QuickStartWizard *qstartwizard = new QuickStartWizard(this);
qstartwizard->exec();
}
/** Called when the user changes the UI translation. */
void
MainWindow::retranslateUi()