summaryrefslogtreecommitdiff
path: root/LayerManagerCommands
diff options
context:
space:
mode:
authorMichael Schuldt <michael.schuldt@bmw.de>2012-03-23 10:26:54 +0100
committerMichael Schuldt <michael.schuldt@bmw.de>2012-03-23 10:28:58 +0100
commitc1557ca157345b322c623761ec66764c026f86c5 (patch)
treeaa81f234cc633862be9e7556327e627975629568 /LayerManagerCommands
parentb66ab85223be05af13fa19dab66b447f5e93b507 (diff)
downloadlayer_management-c1557ca157345b322c623761ec66764c026f86c5.tar.gz
LayerManagerCommands : Removes signed / unsigned mismatch
Diffstat (limited to 'LayerManagerCommands')
-rw-r--r--LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp b/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp
index 0bcec48..271cf4a 100644
--- a/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp
+++ b/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp
@@ -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;
}