aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/resourceeditor')
-rw-r--r--src/plugins/resourceeditor/ResourceEditor.json.in7
-rw-r--r--src/plugins/resourceeditor/qrceditor/resourcefile.cpp2
2 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/resourceeditor/ResourceEditor.json.in b/src/plugins/resourceeditor/ResourceEditor.json.in
index be3ace268a..349c8b0c96 100644
--- a/src/plugins/resourceeditor/ResourceEditor.json.in
+++ b/src/plugins/resourceeditor/ResourceEditor.json.in
@@ -13,8 +13,11 @@
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
],
"Category" : "Qt Creator",
- "Description" : "Editor for qrc files.",
- "Url" : "http://www.qt.io",
+ "Description" : "Edit Qt Resource System (.qrc) files",
+ "LongDescription" : [
+ "Store files in the application's executable with the platform-independent Qt Resource System."
+ ],
+ "Url" : "https://www.qt.io",
${IDE_PLUGIN_DEPENDENCIES},
"Mimetypes" : [
diff --git a/src/plugins/resourceeditor/qrceditor/resourcefile.cpp b/src/plugins/resourceeditor/qrceditor/resourcefile.cpp
index 38ee38fedf..bfc68e89d1 100644
--- a/src/plugins/resourceeditor/qrceditor/resourcefile.cpp
+++ b/src/plugins/resourceeditor/qrceditor/resourcefile.cpp
@@ -795,7 +795,7 @@ QVariant ResourceModel::data(const QModelIndex &index, int role) const
// File node
Q_ASSERT(file);
if (!file->exists())
- result = Utils::creatorTheme()->color(Utils::Theme::TextColorError);
+ result = Utils::creatorColor(Utils::Theme::TextColorError);
}
break;
default: