ui/commandhandlers/commoncommandhandlers/src/glxcommandhandlereditimage.cpp
changeset 72 0a8e959402e5
parent 54 0f0f3f26f787
--- a/ui/commandhandlers/commoncommandhandlers/src/glxcommandhandlereditimage.cpp	Wed Oct 06 14:49:39 2010 +0530
+++ b/ui/commandhandlers/commoncommandhandlers/src/glxcommandhandlereditimage.cpp	Thu Oct 14 17:54:23 2010 +0530
@@ -53,17 +53,17 @@
     const QString operation = QLatin1String("view(QString,int)");
     
     //Connect to service provider
-    if(mReq == NULL)
+    if( !mReq )
         {
         mReq = mAppmgr.create(service, interface, operation, true);
-        mReq->setEmbedded(true);
-        mReq->setSynchronous(false);
         }
     
-    if(mReq == NULL)
+    if( !mReq )
         {
         return;
         } 
+	mReq->setEmbedded(true);
+	mReq->setSynchronous(false);
     
     connect(mReq, SIGNAL(requestOk(const QVariant&)), this, SLOT(handleOk(const QVariant&)));
     connect(mReq, SIGNAL(requestError(int,const QString&)), this, SLOT(handleError(int,const QString&)));