LayerManagerCommands : Removes signed / unsigned mismatch
authorMichael Schuldt <michael.schuldt@bmw.de>
Fri, 23 Mar 2012 09:26:54 +0000 (10:26 +0100)
committerMichael Schuldt <michael.schuldt@bmw.de>
Fri, 23 Mar 2012 09:28:58 +0000 (10:28 +0100)
LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp

index 0bcec48..271cf4a 100644 (file)
@@ -52,7 +52,7 @@ ExecutionResult SurfaceSetNativeContentCommand::execute(ICommandExecutor* execut
 
             result = ExecutionSuccessRedraw;
         }
-        else if(surface->getNativeContent() == m_nativeHandle)
+        else if( (unsigned int) surface->getNativeContent() == m_nativeHandle)
         {
             result = ExecutionSuccess;
         }