Fix indentation

Mostly 3 leading spaces converted to 4

A few other indentation issues

Change-Id: Ib0db5925cac4d2999faf5699cd570884cbcd4863
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Orgad Shaneh
2013-05-05 22:43:52 +03:00
committed by hjk
parent cf1b82b152
commit ec84dd058a
15 changed files with 51 additions and 51 deletions
+2 -1
View File
@@ -416,8 +416,9 @@ bool handleDoxygenCppStyleContinuation(QTextCursor &cursor,
// consider it as a continuation. Handles situations like:
// void d(); ///<enter>
if (!(text.trimmed().startsWith(QLatin1String("///"))
|| text.startsWith(QLatin1String("//!"))))
|| text.startsWith(QLatin1String("//!")))) {
return false;
}
QString newLine(QLatin1Char('\n'));
newLine.append(QString(offset, QLatin1Char(' '))); // indent correctly
+1 -2
View File
@@ -1717,8 +1717,7 @@ void FakeVimPluginPrivate::triggerCompletions()
// CompletionSupport::instance()->complete(editor->editor(), TextCompletion, false);
}
void FakeVimPluginPrivate::triggerSimpleCompletions(const QString &needle,
bool forward)
void FakeVimPluginPrivate::triggerSimpleCompletions(const QString &needle, bool forward)
{
// m_wordCompletion->setActive(needle, forward, qobject_cast<FakeVimHandler *>(sender()));
m_wordProvider->setActive(needle, forward, qobject_cast<FakeVimHandler *>(sender()));