summaryrefslogtreecommitdiffstats
path: root/examples/designer
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2012-03-26 09:29:47 +0200
committerQt by Nokia <qt-info@nokia.com>2012-03-28 10:02:15 +0200
commitb97b090d620a23736d4ab5535000ce499509cac5 (patch)
tree97d6be459eaf77c5e2bbfda49bea626d72938c79 /examples/designer
parent180e84ad39cf135d5facbd43e9ea3be830b2fe1f (diff)
Use "qt-project.org" instead of "trolltech" in the resource system
Task-number: QTBUG-23272 Change-Id: I383e66291fc2c5bb431792c1b93a152a9b02462e Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'examples/designer')
-rw-r--r--examples/designer/arthurplugin/arthur_plugin.qrc2
-rw-r--r--examples/designer/arthurplugin/plugin.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/designer/arthurplugin/arthur_plugin.qrc b/examples/designer/arthurplugin/arthur_plugin.qrc
index e5170e63c..5c0c0a021 100644
--- a/examples/designer/arthurplugin/arthur_plugin.qrc
+++ b/examples/designer/arthurplugin/arthur_plugin.qrc
@@ -1,5 +1,5 @@
<!DOCTYPE RCC><RCC version="1.0">
-<qresource prefix="/trolltech/arthurplugin">
+<qresource prefix="/qt-project.org/arthurplugin">
<file>bg1.jpg</file>
<file>flower.jpg</file>
<file>flower_alpha.jpg</file>
diff --git a/examples/designer/arthurplugin/plugin.cpp b/examples/designer/arthurplugin/plugin.cpp
index c25997eb9..c278985ed 100644
--- a/examples/designer/arthurplugin/plugin.cpp
+++ b/examples/designer/arthurplugin/plugin.cpp
@@ -179,7 +179,7 @@ public:
{
XFormRendererEx *xform = new XFormRendererEx(parent);
xform->setText(QLatin1String("Qt - Hello World!!"));
- xform->setPixmap(QPixmap(QLatin1String(":/trolltech/arthurplugin/bg1.jpg")));
+ xform->setPixmap(QPixmap(QLatin1String(":/qt-project.org/arthurplugin/bg1.jpg")));
return xform;
}
};