Fix preprocessor directives

* The standard says all preprocessor directives have to start
   at column 0.
This commit is contained in:
Tobias Hunger
2010-06-10 13:12:12 +02:00
parent 726c3345c4
commit 5d5f647f3d
14 changed files with 147 additions and 147 deletions

View File

@@ -733,7 +733,7 @@ void FakeVimPluginPrivate::setActionChecked(const QString &code, bool check)
void FakeVimPluginPrivate::windowCommand(int key)
{
#define control(n) (256 + n)
# define control(n) (256 + n)
QString code;
switch (key) {
case 'c': case 'C': case control('c'):
@@ -756,7 +756,7 @@ void FakeVimPluginPrivate::windowCommand(int key)
code = Core::Constants::GOTO_OTHER_SPLIT;
break;
}
#undef control
# undef control
//qDebug() << "RUNNING WINDOW COMMAND: " << key << code;
if (code.isEmpty()) {
//qDebug() << "UNKNOWN WINDOWS COMMAND: " << key;