diff options
author | Alessandro Portale <alessandro.portale@qt.io> | 2017-04-24 17:01:10 +0200 |
---|---|---|
committer | Alessandro Portale <alessandro.portale@qt.io> | 2017-04-24 18:36:28 +0000 |
commit | 3624a663d8e94c57cdabca774962a2995c8f79f3 (patch) | |
tree | 0fef1f9ed7d5ec3da5faafb81fd92ae6c300fe66 /src/plugins/resourceeditor | |
parent | 07884645af8fb449d6b1343d33b734925588768a (diff) | |
download | qt-creator-3624a663d8e94c57cdabca774962a2995c8f79f3.tar.gz |
Reduce usage of qApp in favor of static function calls
Q*Application classes have unusually many static functions. In many
cases in our code, these functions are unnecessarily called as instance
functions, using the qApp helper.
This patch replaces many occurencies of qApp with the according
Q*Application classname.
Change-Id: I6099a419fa7bf969891269c37ed7a9e817ef5124
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/resourceeditor')
-rw-r--r-- | src/plugins/resourceeditor/resourceeditorfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorfactory.cpp b/src/plugins/resourceeditor/resourceeditorfactory.cpp index d4707e3f69..3b81616328 100644 --- a/src/plugins/resourceeditor/resourceeditorfactory.cpp +++ b/src/plugins/resourceeditor/resourceeditorfactory.cpp @@ -45,7 +45,7 @@ ResourceEditorFactory::ResourceEditorFactory(ResourceEditorPlugin *plugin) : { setId(RESOURCEEDITOR_ID); setMimeTypes(QStringList(QLatin1String(C_RESOURCE_MIMETYPE))); - setDisplayName(qApp->translate("OpenWith::Editors", C_RESOURCEEDITOR_DISPLAY_NAME)); + setDisplayName(QCoreApplication::translate("OpenWith::Editors", C_RESOURCEEDITOR_DISPLAY_NAME)); Core::FileIconProvider::registerIconOverlayForSuffix( ProjectExplorer::Constants::FILEOVERLAY_QRC, "qrc"); |