windowing/windowserver/nga/SERVER/openwfc/CLIENT.CPP
changeset 45 36b2e23a8629
parent 36 01a6848ebfd7
child 69 3365349494cc
--- a/windowing/windowserver/nga/SERVER/openwfc/CLIENT.CPP	Fri Apr 16 16:21:04 2010 +0300
+++ b/windowing/windowserver/nga/SERVER/openwfc/CLIENT.CPP	Mon May 03 13:44:32 2010 +0300
@@ -51,7 +51,6 @@
 CWsClient* CWsClient::iCurrentClient;
 CWsObject* CWsClient::iDestObj;
 const TUint8* CWsClient::iNextCmd;
-CIdle* CWsClient::iMoreCommands=NULL;
 
 TUint CWsClient::iConnectionId = CDebugLogBase::EDummyConnectionId+1;
 CArrayFixFlat<CWsClient::TWsCursorArrayItem>* CWsClient::iSystemPointerCursors = NULL;
@@ -569,8 +568,6 @@
 
 	if (iInternalFlags&(EFinishedProcessingCommands|EPanicClientAsSoonAsPossible))
 		CompleteMessage(iClientMessage,iReply);	// (finish)
-	else
-		iMoreCommands->Start(TCallBack(CWsClient::DoContinueDeferredServiceOfCommandBuf,this));	// (call #3.1.1)
 	
 	iCurrentClient=NULL;
 #if defined(_DEBUG)
@@ -578,13 +575,6 @@
 #endif
 	}
 
-TInt CWsClient::DoContinueDeferredServiceOfCommandBuf(TAny* aClient)	// (step #3.1.1)
-	{
-	static_cast<CWsClient*>(aClient)->DoServiceCommandBuf();	// (call #3.1)
-	return KErrNone;
-	}
-
-
 void CWsClient::ExecuteAsyncClientCommandL(TInt aOpcode, const RMessage2& aMessage)	// (step #3.2)
 	{
 	switch(aOpcode)
@@ -1992,7 +1982,6 @@
 
 void CWsClient::InitStaticsL()
 	{
-	iMoreCommands=CIdle::NewL(EClientBufferPriority);
 	}
 
 void CWsClient::DeleteStatics()
@@ -2007,8 +1996,6 @@
 		iTextCursorArray = NULL;
 		}
 
-	delete iMoreCommands;
-	iMoreCommands=NULL;
 	// coverity[extend_simple_error] 
 	}