Skip to content

Commit 143a692

Browse files
committed
Minor tweaks
- Removed the "Step x" text altogether. - Removed some commented out code.
1 parent 7260bb4 commit 143a692

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

addon/doxywizard/doxywizard.cpp

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ MainWindow::MainWindow()
120120
// select extra run options
121121
m_runOptions = new QLineEdit;
122122

123-
runTabLayout->addWidget(new QLabel(tr("Step 3: Specify additional command line options for running doxygen")));
123+
runTabLayout->addWidget(new QLabel(tr("Specify additional command line options for running doxygen")));
124124
runTabLayout->addWidget(m_runOptions);
125125

126126
QVBoxLayout *runVLayout = new QVBoxLayout;
@@ -162,22 +162,16 @@ MainWindow::MainWindow()
162162
grid->addWidget(m_outputLog,0,0);
163163
grid->setColumnStretch(0,1);
164164
grid->setRowStretch(0,1);
165-
//QHBoxLayout *launchLayout = new QHBoxLayout;
166-
//m_launchHtml = new QPushButton(tr("Show HTML output"));
167-
//launchLayout->addWidget(m_launchHtml);
168-
169-
//launchLayout->addStretch(1);
170-
//grid->addLayout(launchLayout,1,0);
171165
runTabLayout->addLayout(grid);
172166

173167
m_tabs = new QTabWidget;
174168
m_tabs->addTab(m_wizard,tr("Wizard"));
175169
m_tabs->addTab(m_expert,tr("Expert"));
176170
m_tabs->addTab(runTab,tr("Run"));
177171

178-
rowLayout->addWidget(new QLabel(tr("Step 1: Specify the working directory from which doxygen will run")));
172+
rowLayout->addWidget(new QLabel(tr("Specify the working directory from which doxygen will run")));
179173
rowLayout->addLayout(dirLayout);
180-
rowLayout->addWidget(new QLabel(tr("Step 2: Configure doxygen using the Wizard and/or Expert tab, then switch to the Run tab to generate the documentation")));
174+
rowLayout->addWidget(new QLabel(tr("Configure doxygen using the Wizard and/or Expert tab, then switch to the Run tab to generate the documentation")));
181175
mainLayout->addWidget(m_tabs);
182176

183177
setCentralWidget(mainPart);

0 commit comments

Comments
 (0)