Skip to content

Commit 78af6f3

Browse files
committed
STYLE: ctkSettingsDialog: Fix trailing whitespace
1 parent b760279 commit 78af6f3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Libs/Widgets/ctkSettingsDialog.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,27 +261,27 @@ ::addPanel(const QString& label, const QIcon& icon,
261261
void ctkSettingsDialogPrivate::removePanelRecursive(QTreeWidgetItem* item)
262262
{
263263
Q_Q(ctkSettingsDialog);
264-
264+
265265
// Remove all of the children first
266266
for (int i = item->childCount() - 1; i >= 0; i--)
267267
{
268268
QTreeWidgetItem* child = item->child(i);
269269
this->removePanelRecursive(child);
270270
}
271-
271+
272272
ctkSettingsPanel* panel = this->panel(item);
273-
273+
274274
q->disconnect(panel, SIGNAL(settingChanged(QString, QVariant)),
275275
q, SLOT(onSettingChanged(QString, QVariant)));
276276
panel->setSettings(0);
277277

278278
this->SettingsStackedWidget->removeWidget(panel);
279279
panel->deleteLater();
280-
280+
281281
QTreeWidgetItem* parent = item->parent();
282282
if (parent != 0)
283283
parent->removeChild(item);
284-
284+
285285
this->Panels.remove(item);
286286
delete item;
287287
}

0 commit comments

Comments
 (0)