summaryrefslogtreecommitdiffstats
path: root/src/plugins/platformthemes/gtk2/main.cpp
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-03-07 18:07:14 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-14 19:49:38 +0100
commit94d1d8486154a1df81545cdda2fe4a2ddcb001e1 (patch)
tree8140407d86ffbc7adb0f47e70ce0aff7706dfe80 /src/plugins/platformthemes/gtk2/main.cpp
parentb6e9a8f21ac8b4cc3cc56232ce346ebd7ba17a70 (diff)
GTK+ platform theme: cleanup coding style
Change-Id: I5db283d7ed42346d9c2b90acbc342336b450aa97 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'src/plugins/platformthemes/gtk2/main.cpp')
-rw-r--r--src/plugins/platformthemes/gtk2/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platformthemes/gtk2/main.cpp b/src/plugins/platformthemes/gtk2/main.cpp
index 0c3fe46e29..13e7d57b13 100644
--- a/src/plugins/platformthemes/gtk2/main.cpp
+++ b/src/plugins/platformthemes/gtk2/main.cpp
@@ -56,7 +56,7 @@ public:
QPlatformTheme *QGtk2ThemePlugin::create(const QString &key, const QStringList &params)
{
Q_UNUSED(params);
- if (!key.compare(QStringLiteral("gtk2"), Qt::CaseInsensitive))
+ if (!key.compare(QLatin1String(QGtk2Theme::name), Qt::CaseInsensitive))
return new QGtk2Theme;
return 0;