From 09940ed95fced0ea685350ef58f70a3dc1e469bb Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Sun, 5 Feb 2012 01:03:05 +0800 Subject: [PATCH] Suppress the warning for unused variable --- src/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Application.cpp b/src/Application.cpp index 5db06b8f8..0bfa0e9cb 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -238,6 +238,7 @@ void Application::createTabFromArgs(KCmdLineArgs* args, MainWindow* window, const QString& title = tokens["title"]; const QString& command = tokens["command"]; const QString& profile = tokens["profile"]; // currently not used + Q_UNUSED(profile); // FIXME: A lot of duplicate code below