You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: addon/doxywizard/doxywizard.cpp
+3-9Lines changed: 3 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ MainWindow::MainWindow()
120
120
// select extra run options
121
121
m_runOptions = new QLineEdit;
122
122
123
-
runTabLayout->addWidget(newQLabel(tr("Step 3: Specify additional command line options for running doxygen")));
123
+
runTabLayout->addWidget(newQLabel(tr("Specify additional command line options for running doxygen")));
124
124
runTabLayout->addWidget(m_runOptions);
125
125
126
126
QVBoxLayout *runVLayout = new QVBoxLayout;
@@ -162,22 +162,16 @@ MainWindow::MainWindow()
162
162
grid->addWidget(m_outputLog,0,0);
163
163
grid->setColumnStretch(0,1);
164
164
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);
171
165
runTabLayout->addLayout(grid);
172
166
173
167
m_tabs = new QTabWidget;
174
168
m_tabs->addTab(m_wizard,tr("Wizard"));
175
169
m_tabs->addTab(m_expert,tr("Expert"));
176
170
m_tabs->addTab(runTab,tr("Run"));
177
171
178
-
rowLayout->addWidget(newQLabel(tr("Step 1: Specify the working directory from which doxygen will run")));
172
+
rowLayout->addWidget(newQLabel(tr("Specify the working directory from which doxygen will run")));
179
173
rowLayout->addLayout(dirLayout);
180
-
rowLayout->addWidget(newQLabel(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(newQLabel(tr("Configure doxygen using the Wizard and/or Expert tab, then switch to the Run tab to generate the documentation")));
0 commit comments