diff options
Diffstat (limited to 'src/tabwidget.cpp')
-rw-r--r-- | src/tabwidget.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tabwidget.cpp b/src/tabwidget.cpp index 32d43d65..fc545bd3 100644 --- a/src/tabwidget.cpp +++ b/src/tabwidget.cpp @@ -190,7 +190,7 @@ void TabBar::reloadTab() } -// -------------------------------------------------------------------------------------------------------------------------------------------------------- +// --------------------------------------------------------------------------------------------------------------------------- TabWidget::TabWidget(QWidget *parent) @@ -276,7 +276,8 @@ void TabWidget::clear() // clear the recently closed tabs m_recentlyClosedTabs.clear(); // clear the line edit history - for (int i = 0; i < m_lineEdits->count(); ++i) { + for (int i = 0; i < m_lineEdits->count(); ++i) + { KLineEdit *qLineEdit = lineEdit(i); qLineEdit->setText(qLineEdit->text()); } @@ -827,7 +828,7 @@ bool TabWidget::restoreState(const QByteArray &state) } -// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +// ---------------------------------------------------------------------------------------------------------------------------- WebActionMapper::WebActionMapper(KAction *root, QWebPage::WebAction webAction, QObject *parent) |