aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/helloworld
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2012-05-07 18:28:03 +0200
committerEike Ziller <eike.ziller@nokia.com>2012-05-08 10:18:12 +0200
commitcad296649809da562d91f0296b04bd2c6c3269ab (patch)
tree0652ce148b95fac58d05153d15323322e80704a7 /src/plugins/helloworld
parent2d612a252bb3b9ac2724966fe95d6f64054fd993 (diff)
use Core::Id for IMode::id and IMode::type
Change-Id: Ic7ce5b883e054c6eeba078327042e99e1c556345 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/helloworld')
-rw-r--r--src/plugins/helloworld/helloworldplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/helloworld/helloworldplugin.cpp b/src/plugins/helloworld/helloworldplugin.cpp
index 025f926df29..64fb34d1e07 100644
--- a/src/plugins/helloworld/helloworldplugin.cpp
+++ b/src/plugins/helloworld/helloworldplugin.cpp
@@ -62,8 +62,8 @@ public:
setDisplayName(tr("Hello world!"));
setIcon(QIcon());
setPriority(0);
- setId(QLatin1String("HelloWorld.HelloWorldMode"));
- setType(QLatin1String("HelloWorld.HelloWorldMode"));
+ setId("HelloWorld.HelloWorldMode");
+ setType("HelloWorld.HelloWorldMode");
setContextHelpId(QString());
}
};