summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/doxywizard.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-05-03 19:32:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-05-03 19:32:48 (GMT)
commit2277e6e695d785d319cb52a8a8ead2982eac2afa (patch)
treeb183195709af0628833f7499613e0a0317471029 /addon/doxywizard/doxywizard.cpp
parentfbc60af2298c2668893e2f7045f66765f8e0c63f (diff)
downloadDoxygen-2277e6e695d785d319cb52a8a8ead2982eac2afa.zip
Doxygen-2277e6e695d785d319cb52a8a8ead2982eac2afa.tar.gz
Doxygen-2277e6e695d785d319cb52a8a8ead2982eac2afa.tar.bz2
Doxywizard: make the Next button on the last page of the expert tab switch to the run tab
Diffstat (limited to 'addon/doxywizard/doxywizard.cpp')
-rw-r--r--addon/doxywizard/doxywizard.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp
index d69cf73..26df065 100644
--- a/addon/doxywizard/doxywizard.cpp
+++ b/addon/doxywizard/doxywizard.cpp
@@ -128,6 +128,7 @@ MainWindow::MainWindow()
connect(showSettings,SIGNAL(clicked()),SLOT(showSettings()));
connect(m_expert,SIGNAL(changed()),SLOT(configChanged()));
connect(m_wizard,SIGNAL(done()),SLOT(selectRunTab()));
+ connect(m_expert,SIGNAL(done()),SLOT(selectRunTab()));
loadSettings();
updateLaunchButtonState();
@@ -372,6 +373,7 @@ void MainWindow::saveSettings()
void MainWindow::selectTab(int id)
{
if (id==0) m_wizard->refresh();
+ else if (id==1) m_expert->refresh();
}
void MainWindow::selectRunTab()