From c2d6e6d54a2cd05f4dd91c9aa5722fc465d5fd44 Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Thu, 7 Jan 2010 16:32:30 +0100 Subject: [PATCH] fakevim: break long lines --- src/plugins/fakevim/fakevimplugin.cpp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index 88d269f62ba..0a4111cba00 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -175,12 +175,17 @@ QWidget *FakeVimOptionPage::createPage(QWidget *parent) this, SLOT(setPlainStyle())); if (m_searchKeywords.isEmpty()) { QTextStream(&m_searchKeywords) - << ' ' << m_ui.labelAutoIndent->text() << ' ' << m_ui.labelExpandTab->text() - << ' ' << m_ui.labelSmartIndent->text() << ' ' << m_ui.labelExpandTab->text() - << ' ' << m_ui.labelHlSearch->text() << ' ' << m_ui.labelIncSearch->text() - << ' ' << m_ui.labelShiftWidth->text() << ' ' << m_ui.labelSmartTab->text() - << ' ' << m_ui.labelStartOfLine->text() << ' ' << m_ui.tabulatorLabel->text() - << ' ' << m_ui.labelBackspace->text(); + << ' ' << m_ui.labelAutoIndent->text() + << ' ' << m_ui.labelExpandTab->text() + << ' ' << m_ui.labelSmartIndent->text() + << ' ' << m_ui.labelExpandTab->text() + << ' ' << m_ui.labelHlSearch->text() + << ' ' << m_ui.labelIncSearch->text() + << ' ' << m_ui.labelShiftWidth->text() + << ' ' << m_ui.labelSmartTab->text() + << ' ' << m_ui.labelStartOfLine->text() + << ' ' << m_ui.tabulatorLabel->text() + << ' ' << m_ui.labelBackspace->text(); m_searchKeywords.remove(QLatin1Char('&')); } return w; -- GitLab