summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/doxywizard.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2008-02-10 12:31:40 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2008-02-10 12:31:40 (GMT)
commitb8ff687873e37d7cf0f4e7df0fd7da3660f1999c (patch)
treeb6882cdef0c60182168c8c11e298dcd76cc02bbc /addon/doxywizard/doxywizard.cpp
parent0e922bf35ccff96ec03f22df607f3b44303206eb (diff)
downloadDoxygen-b8ff687873e37d7cf0f4e7df0fd7da3660f1999c.zip
Doxygen-b8ff687873e37d7cf0f4e7df0fd7da3660f1999c.tar.gz
Doxygen-b8ff687873e37d7cf0f4e7df0fd7da3660f1999c.tar.bz2
Release-1.5.5
Diffstat (limited to 'addon/doxywizard/doxywizard.cpp')
-rw-r--r--addon/doxywizard/doxywizard.cpp43
1 files changed, 1 insertions, 42 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp
index 35755ce..3ef67bf 100644
--- a/addon/doxywizard/doxywizard.cpp
+++ b/addon/doxywizard/doxywizard.cpp
@@ -221,9 +221,6 @@ Step2::Step2(QWidget *parent) : QWidget(parent,"Step2")
layout->addWidget(m_optimizeLang);
layout->addStretch(1);
-
- connect(m_crossRef,SIGNAL(stateChanged(int)),
- parent,SLOT(changeCrossRefState(int)));
}
bool Step2::crossReferencingEnabled() const
@@ -621,44 +618,6 @@ Wizard::Wizard(QWidget *parent=0) : QTabDialog(parent)
setCancelButton();
}
-void Wizard::changeCallGraphState(int state)
-{
- if (state==QButton::On && !m_step2->crossReferencingEnabled())
- {
- if (QMessageBox::question(this,"This option depends on another option",
- "The call graph option requires that cross-referencing "
- "of source code is enabled.\nDo you want to enable this "
- "option?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes)
- {
- m_step2->enableCrossReferencing();
- }
- else
- {
- m_step4->disableCallGraphs();
- }
- }
-}
-
-void Wizard::changeCrossRefState(int state)
-{
- if (state==QButton::Off && m_step4->callGraphEnabled())
- {
- if (QMessageBox::question(this,"Another option depends on this one",
- "The call graph option requires that cross-referencing "
- "of source code is enabled.\nDo you want to disable the call "
- "graph option?",QMessageBox::Yes,QMessageBox::No
- )==QMessageBox::Yes
- )
- {
- m_step4->disableCallGraphs();
- }
- else
- {
- m_step2->enableCrossReferencing();
- }
- }
-}
-
//==========================================================================
MainWidget::MainWidget(QWidget *parent)
@@ -1339,7 +1298,7 @@ void MainWidget::about()
QTextStream t(&msg,IO_WriteOnly);
t << QString("<qt><center>A tool to configure and run doxygen version ")+versionString+
" on your source files.</center><p><br>"
- "<center>Written by<br> Dimitri van Heesch<br>&copy; 2000-2006</center><p>"
+ "<center>Written by<br> Dimitri van Heesch<br>&copy; 2000-2008</center><p>"
"</qt>";
QMessageBox::about(this,"Doxygen GUI",msg);
}