diff options
Diffstat (limited to 'automoc/kde4automoc.cpp')
-rw-r--r-- | automoc/kde4automoc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/automoc/kde4automoc.cpp b/automoc/kde4automoc.cpp index b21b6364..5ab05b08 100644 --- a/automoc/kde4automoc.cpp +++ b/automoc/kde4automoc.cpp @@ -311,9 +311,9 @@ void AutoMoc::generateMoc(const QString &sourceFile, const QString &mocFileName) mocProc->setProcessChannelMode(QProcess::ForwardedChannels); QStringList args(mocIncludes); #ifdef Q_OS_WIN - args << "-DWIN32"; + args << "-DWIN32"; #endif - args << "-o" << mocFilePath << sourceFile; + args << "-o" << mocFilePath << sourceFile; //qDebug() << "executing: " << mocExe << args; mocProc->start(mocExe, args, QIODevice::NotOpen); if (mocProc->waitForStarted()) |