From b44d3ad1ea1019d00ad272f7dad6734edc9cd9a5 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Fri, 7 Oct 2011 10:41:52 +0200 Subject: [PATCH] Remove unused parameter. Change-Id: I0aaedd0b7e880d9ace97bf357cd9924247558f0f Reviewed-on: http://codereview.qt-project.org/6227 Reviewed-by: Eike Ziller --- src/app/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index 346ad3fe21b..7d078a8103e 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -155,7 +155,7 @@ static inline int askMsgSendFailed() QMessageBox::Retry); } -static inline QStringList getPluginPaths(QSettings *settings) +static inline QStringList getPluginPaths() { QStringList rc; // Figure out root: Up one from 'bin' @@ -289,7 +289,7 @@ int main(int argc, char **argv) #endif #endif // Load - const QStringList pluginPaths = getPluginPaths(settings); + const QStringList pluginPaths = getPluginPaths(); pluginManager.setPluginPaths(pluginPaths); QMap foundAppOptions;