From f4ec27cdc2ed45cd1c7d82bad20e0e05ca88f0e3 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@nokia.com> Date: Fri, 24 Jul 2009 12:11:12 +0200 Subject: [PATCH] Using QLatin1Char for directory separators in getPluginPaths() Reviewed-by: dt --- src/app/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index a24fa317f43..9bc969486ec 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -181,16 +181,16 @@ static inline QStringList getPluginPaths() const QString rootDirPath = rootDir.canonicalPath(); // 1) "plugins" (Win/Linux) QString pluginPath = rootDirPath; - pluginPath += '/'; + pluginPath += QLatin1Char('/'); pluginPath += QLatin1String(IDE_LIBRARY_BASENAME); - pluginPath += '/'; + pluginPath += QLatin1Char('/'); pluginPath += QLatin1String("qtcreator"); - pluginPath += '/'; + pluginPath += QLatin1Char('/'); pluginPath += QLatin1String("plugins"); rc.push_back(pluginPath); // 2) "PlugIns" (OS X) pluginPath = rootDirPath; - pluginPath += '/'; + pluginPath += QLatin1Char('/'); pluginPath += QLatin1String("PlugIns"); rc.push_back(pluginPath); return rc; -- GitLab