diff options
author | Eike Ziller <eike.ziller@nokia.com> | 2011-10-07 10:41:52 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@nokia.com> | 2011-10-07 10:42:59 +0200 |
commit | b44d3ad1ea1019d00ad272f7dad6734edc9cd9a5 (patch) | |
tree | 2768e06d1b73dd86d70583db8df7b1efcab24a14 /src/app | |
parent | 37b05178c35e8f81f486d76d042be7f9e6ee5040 (diff) | |
download | qt-creator-b44d3ad1ea1019d00ad272f7dad6734edc9cd9a5.tar.gz |
Remove unused parameter.
Change-Id: I0aaedd0b7e880d9ace97bf357cd9924247558f0f
Reviewed-on: http://codereview.qt-project.org/6227
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp index 346ad3fe21..7d078a8103 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<QString, QString> foundAppOptions; |