LayerManagerCommands: log screen/layer/surface IDs in decimal and hex
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Mon, 11 Mar 2013 15:07:16 +0000 (08:07 -0700)
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 14 Mar 2013 12:03:39 +0000 (05:03 -0700)
Signed-off-by: Timo Lotterbach <timo.lotterbach@bmw-carit.de>
48 files changed:
LayerManagerCommands/src/GetOptimizationModeCommand.cpp
LayerManagerCommands/src/LayerAddSurfaceCommand.cpp
LayerManagerCommands/src/LayerCreateCommand.cpp
LayerManagerCommands/src/LayerDumpCommand.cpp
LayerManagerCommands/src/LayerGetDimensionCommand.cpp
LayerManagerCommands/src/LayerGetOpacityCommand.cpp
LayerManagerCommands/src/LayerGetOrientationCommand.cpp
LayerManagerCommands/src/LayerGetPositionCommand.cpp
LayerManagerCommands/src/LayerGetVisibilityCommand.cpp
LayerManagerCommands/src/LayerRemoveCommand.cpp
LayerManagerCommands/src/LayerRemoveSurfaceCommand.cpp
LayerManagerCommands/src/LayerSetChromaKeyCommand.cpp
LayerManagerCommands/src/LayerSetDestinationRectangleCommand.cpp
LayerManagerCommands/src/LayerSetDimensionCommand.cpp
LayerManagerCommands/src/LayerSetOpacityCommand.cpp
LayerManagerCommands/src/LayerSetOrientationCommand.cpp
LayerManagerCommands/src/LayerSetPositionCommand.cpp
LayerManagerCommands/src/LayerSetRenderOrderCommand.cpp
LayerManagerCommands/src/LayerSetSourceRectangleCommand.cpp
LayerManagerCommands/src/LayerSetTypeCommand.cpp
LayerManagerCommands/src/LayerSetVisibilityCommand.cpp
LayerManagerCommands/src/ScreenDumpCommand.cpp
LayerManagerCommands/src/ScreenSetRenderOrderCommand.cpp
LayerManagerCommands/src/SetOptimizationModeCommand.cpp
LayerManagerCommands/src/ShaderDestroyCommand.cpp
LayerManagerCommands/src/SurfaceCreateCommand.cpp
LayerManagerCommands/src/SurfaceDumpCommand.cpp
LayerManagerCommands/src/SurfaceGetDimensionCommand.cpp
LayerManagerCommands/src/SurfaceGetKeyboardFocusCommand.cpp
LayerManagerCommands/src/SurfaceGetOpacityCommand.cpp
LayerManagerCommands/src/SurfaceGetOrientationCommand.cpp
LayerManagerCommands/src/SurfaceGetPixelformatCommand.cpp
LayerManagerCommands/src/SurfaceGetPositionCommand.cpp
LayerManagerCommands/src/SurfaceGetVisibilityCommand.cpp
LayerManagerCommands/src/SurfaceRemoveCommand.cpp
LayerManagerCommands/src/SurfaceRemoveNativeContentCommand.cpp
LayerManagerCommands/src/SurfaceSetChromaKeyCommand.cpp
LayerManagerCommands/src/SurfaceSetDestinationRectangleCommand.cpp
LayerManagerCommands/src/SurfaceSetDimensionCommand.cpp
LayerManagerCommands/src/SurfaceSetKeyboardFocusCommand.cpp
LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp
LayerManagerCommands/src/SurfaceSetOpacityCommand.cpp
LayerManagerCommands/src/SurfaceSetOrientationCommand.cpp
LayerManagerCommands/src/SurfaceSetPositionCommand.cpp
LayerManagerCommands/src/SurfaceSetShaderCommand.cpp
LayerManagerCommands/src/SurfaceSetSourceRectangleCommand.cpp
LayerManagerCommands/src/SurfaceSetVisibilityCommand.cpp
LayerManagerCommands/src/SurfaceUpdateInputEventAcceptance.cpp

index feefe3a..1783461 100644 (file)
@@ -46,7 +46,7 @@ const std::string GetOptimizationModeCommand::getString()
 {
     std::stringstream description;
     description << "GetOptimizationModeCommand("
-                << "id=" << (int)m_id
+                << "id=" << (int)m_id << "(0x" << std::hex << (int)m_id << ")" << std::dec
                 << ", pReturnMode=" << (int)(*m_pReturnMode)
                 << ")";
     return description.str();
index b091169..8c39051 100644 (file)
@@ -54,8 +54,8 @@ const std::string LayerAddSurfaceCommand::getString()
 {
     std::stringstream description;
     description << "LayerAddSurfaceCommand("
-                << "layerid=" << m_layerid
-                << ", surfaceid=" << m_surfaceid
+                << "layerid=" << m_layerid << "(0x" << std::hex << m_layerid << ")" << std::dec
+                << ", surfaceid=" << m_surfaceid << "(0x" << std::hex << m_surfaceid << ")" << std::dec
                 << ")";
     return description.str();
 }
index 587aeaf..0bf06fa 100644 (file)
@@ -48,7 +48,7 @@ const std::string LayerCreateCommand::getString()
     description << "LayerCreateCommand("
                 << "OriginalWidth=" << m_originalWidth
                 << ", OriginalHeight=" << m_originalHeight
-                << ", idReturn=" << m_idReturn << "=" << *m_idReturn
+                << ", idReturn=" << m_idReturn << "=" << *m_idReturn << "(0x" << std::hex << *m_idReturn << ")" << std::dec
                 << ")";
     return description.str();
 }
index 5604866..2fb235a 100644 (file)
@@ -66,7 +66,7 @@ const std::string LayerDumpCommand::getString()
     std::stringstream description;
     description << "LayerDumpCommand("
                 << "filename=" << m_filename
-                << ", id=" << m_id
+                << ", id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ")";
     return description.str();
 }
index df0e236..3fff19e 100644 (file)
@@ -50,7 +50,7 @@ const std::string LayerGetDimensionCommand::getString()
 {
     std::stringstream description;
     description << "LayerGetDimensionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pWidth=" << m_pWidth << "=" << *m_pWidth
                 << ", m_pHeight=" << m_pHeight << "=" << *m_pHeight
                 << ")";
index 58caedf..d133d1f 100644 (file)
@@ -42,7 +42,7 @@ const std::string LayerGetOpacityCommand::getString()
 {
     std::stringstream description;
     description << "LayerGetOpacityCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pReturnOpacity=" << m_pReturnOpacity << "=" << *m_pReturnOpacity
                 << ")";
     return description.str();
index 2f31cb6..684acb8 100644 (file)
@@ -42,7 +42,7 @@ const std::string LayerGetOrientationCommand::getString()
 {
     std::stringstream description;
     description << "LayerGetOrientationCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pReturnOrientation=" << m_pReturnOrientation << "=" << *m_pReturnOrientation
                 << ")";
     return description.str();
index 5b6ebd6..5122310 100644 (file)
@@ -49,7 +49,7 @@ const std::string LayerGetPositionCommand::getString()
 {
     std::stringstream description;
     description << "LayerGetPositionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pX=" << m_pX << "=" << *m_pX
                 << ", pY=" << m_pY << "=" << *m_pY
                 << ")";
index 51d306c..72da042 100644 (file)
@@ -44,7 +44,7 @@ const std::string LayerGetVisibilityCommand::getString()
 {
     std::stringstream description;
     description << "LayerGetVisibilityCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pVisibility=" << m_pVisibility << "=" << *m_pVisibility
                 << ")";
     return description.str();
index 310ff33..1343409 100644 (file)
@@ -50,7 +50,7 @@ const std::string LayerRemoveCommand::getString()
 {
     std::stringstream description;
     description << "LayerRemoveCommand("
-                << "idToRemove=" << m_idToRemove
+                << "idToRemove=" << m_idToRemove << "(0x" << std::hex << m_idToRemove << ")" << std::dec
                 << ")";
     return description.str();
 }
index 906e360..1215d4f 100644 (file)
@@ -42,8 +42,8 @@ const std::string LayerRemoveSurfaceCommand::getString()
 {
     std::stringstream description;
     description << "LayerRemoveSurfaceCommand("
-                << "layerid=" << m_layerid
-                << ", surfaceid=" << m_surfaceid
+                << "layerid=" << m_layerid << "(0x" << std::hex << m_layerid << ")" << std::dec
+                << ", surfaceid=" << m_surfaceid << "(0x" << std::hex << m_surfaceid << ")" << std::dec
                 << ")";
     return description.str();
 }
index de1aa56..9c8d6be 100644 (file)
@@ -69,7 +69,7 @@ const std::string LayerSetChromaKeyCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetChromaKeyCommand("
-                << "layerid=" << m_layerid
+                << "layerid=" << m_layerid << "(0x" << std::hex << m_layerid << ")" << std::dec
                 << ", m_array=[";
 
     for (unsigned int i = 0; i < m_length; ++i)
index c0104ed..d0742ad 100644 (file)
@@ -53,7 +53,7 @@ const std::string LayerSetDestinationRectangleCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetDestinationRectangleCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", x=" << m_x
                 << ", y=" << m_y
                 << ", width=" << m_width
index 3ca9372..e80c232 100644 (file)
@@ -50,7 +50,7 @@ const std::string LayerSetDimensionCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetDimensionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", width=" << m_width
                 << ", height=" << m_height
                 << ")";
index 62706c4..0b69525 100644 (file)
@@ -50,7 +50,7 @@ const std::string LayerSetOpacityCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetOpacityCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", opacity=" << m_opacity
                 << ")";
     return description.str();
index 7a9db0b..8eeda93 100644 (file)
@@ -49,7 +49,7 @@ const std::string LayerSetOrientationCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetOrientationCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", orientation=" << m_orientation
                 << ")";
     return description.str();
index 1c28b63..8929c21 100644 (file)
@@ -49,7 +49,7 @@ const std::string LayerSetPositionCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetPositionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", m_x=" << m_x
                 << ", m_y=" << m_y
                 << ")";
index d876584..8dff120 100644 (file)
@@ -65,7 +65,7 @@ const std::string LayerSetRenderOrderCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetRenderOrderCommand("
-                << "layerid=" << m_layerid
+                << "layerid=" << m_layerid << "(0x" << std::hex << m_layerid << ")" << std::dec
                 << ", m_array=[";
 
     for (unsigned int i = 0; i < m_length; ++i)
index af33984..ea3fdb5 100644 (file)
@@ -51,7 +51,7 @@ const std::string LayerSetSourceRectangleCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetSourceRectangleCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", x=" << m_x
                 << ", y=" << m_y
                 << ", width=" << m_width
index 2d327b4..aa5bacd 100644 (file)
@@ -51,7 +51,7 @@ const std::string LayerSetTypeCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetTypeCommand("
-                << "idtoSet=" << m_idtoSet
+                << "idtoSet=" << m_idtoSet << "(0x" << std::hex << m_idtoSet << ")" << std::dec
                 << ", layertype=" << m_layerType
                 << ")";
     return description.str();
index e033d9f..1326f51 100644 (file)
@@ -50,7 +50,7 @@ const std::string LayerSetVisibilityCommand::getString()
 {
     std::stringstream description;
     description << "LayerSetVisibilityCommand("
-                << "idtoSet=" << m_idtoSet
+                << "idtoSet=" << m_idtoSet << "(0x" << std::hex << m_idtoSet << ")" << std::dec
                 << ", visibility=" << m_visibility
                 << ")";
     return description.str();
index 76a49a1..80f827a 100644 (file)
@@ -58,7 +58,7 @@ const std::string ScreenDumpCommand::getString()
     std::stringstream description;
     description << "ScreenDumpCommand("
                 << "filename=" << m_filename
-                << ", id=" << m_id
+                << ", id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ")";
     return description.str();
 }
index 7b41136..0a8484e 100644 (file)
@@ -90,7 +90,7 @@ const std::string ScreenSetRenderOrderCommand::getString()
 {
     std::stringstream description;
     description << "ScreenSetRenderOrderCommand("
-                << "m_screenID=" << m_screenID
+                << "m_screenID=" << m_screenID << "(0x" << std::hex << m_screenID << ")" << std::dec
                 << ", m_array=[";
 
     for (unsigned int i = 0; i < m_length; ++i)
index 2006327..d121f7c 100644 (file)
@@ -46,7 +46,7 @@ const std::string SetOptimizationModeCommand::getString()
 {
     std::stringstream description;
     description << "SetOptimizationModeCommand("
-                << "id=" << (int)m_id
+                << "id=" << (int)m_id << "(0x" << std::hex << (int)m_id << ")" << std::dec
                 << ", mode=" << (int)m_mode
                 << ")";
     return description.str();
index bc71bef..861310b 100644 (file)
@@ -106,7 +106,7 @@ const std::string ShaderDestroyCommand::getString()
 {
     std::stringstream description;
     description << "DestroyShaderCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ")";
     return description.str();
 }
index 3eb44a0..1c415a1 100644 (file)
@@ -41,7 +41,7 @@ const std::string SurfaceCreateCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceCreateCommand("
-                << "idReturn=" << m_idReturn << "=" << *m_idReturn
+                << "idReturn=" << m_idReturn << "=" << *m_idReturn << "(0x" << std::hex << *m_idReturn << ")" << std::dec
                 << ")";
     return description.str();
 }
index a5ccafd..b582bf5 100644 (file)
@@ -68,7 +68,7 @@ const std::string SurfaceDumpCommand::getString()
     std::stringstream description;
     description << "SurfaceDumpCommand("
                 << "filename=" << m_filename
-                << ", id=" << m_id
+                << ", id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ")";
     return description.str();
 }
index 7656a08..5439e95 100644 (file)
@@ -49,7 +49,7 @@ const std::string SurfaceGetDimensionCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetDimensionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pWidth=" << m_pWidth << "=" << *m_pWidth
                 << ", m_pHeight=" << m_pHeight << "=" << *m_pHeight
                 << ")";
index a7cf24c..12ea0a2 100644 (file)
@@ -52,7 +52,7 @@ const std::string SurfaceGetKeyboardFocusCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetKeyboardFocusCommand("
-                << "pSurfId=" << m_pSurfId << "=" << *m_pSurfId
+                << "pSurfId=" << m_pSurfId << "=" << *m_pSurfId << "(0x" << std::hex << *m_pSurfId << ")" << std::dec
                 << ")";
     return description.str();
 }
index 258ac92..bf3a227 100644 (file)
@@ -42,7 +42,7 @@ const std::string SurfaceGetOpacityCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetOpacityCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pReturnOpacity=" << m_pReturnOpacity << "=" << *m_pReturnOpacity
                 << ")";
     return description.str();
index 4bef3d1..3224b4c 100644 (file)
@@ -42,7 +42,7 @@ const std::string SurfaceGetOrientationCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetOrientationCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pReturnOrientation=" << m_pReturnOrientation << "=" << *m_pReturnOrientation
                 << ")";
     return description.str();
index 7bc4d34..2b5e66f 100644 (file)
@@ -41,7 +41,7 @@ const std::string SurfaceGetPixelformatCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetPixelformatCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pFormatreturn=" << m_pFormatreturn << "=" << *m_pFormatreturn
                 << ")";
     return description.str();
index 81b1efe..4748a9f 100644 (file)
@@ -49,7 +49,7 @@ const std::string SurfaceGetPositionCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetPositionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pX=" << m_pX << "=" << *m_pX
                 << ", pY=" << m_pY << "=" << *m_pY
                 << ")";
index 268533f..04f91f6 100644 (file)
@@ -44,7 +44,7 @@ const std::string SurfaceGetVisibilityCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceGetVisibilityCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", pVisibility=" << m_pVisibility << "=" << *m_pVisibility
                 << ")";
     return description.str();
index a650794..d84a1a4 100644 (file)
@@ -41,7 +41,7 @@ const std::string SurfaceRemoveCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceRemoveCommand("
-                << "idToRemove=" << m_idToRemove
+                << "idToRemove=" << m_idToRemove << "(0x" << std::hex << m_idToRemove << ")" << std::dec
                 << ")";
     return description.str();
 }
index 7185069..f211b83 100644 (file)
@@ -49,7 +49,7 @@ const std::string SurfaceRemoveNativeContentCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceRemoveNativeContentCommand("
-                << "surfaceId=" << m_surfaceId
+                << "surfaceId=" << m_surfaceId << "(0x" << std::hex << m_surfaceId << ")" << std::dec
                 << ")";
     return description.str();
 }
index a57c2ea..54dacab 100644 (file)
@@ -68,7 +68,7 @@ const std::string SurfaceSetChromaKeyCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetChromaKeyCommand("
-                << "surfaceid=" << m_surfaceid
+                << "surfaceid=" << m_surfaceid << "(0x" << std::hex << m_surfaceid << ")" << std::dec
                 << ", m_array=[";
 
     for (unsigned int i = 0; i < m_length; ++i)
index 0f0f226..da8a945 100644 (file)
@@ -55,7 +55,7 @@ const std::string SurfaceSetDestinationRectangleCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetDestinationRectangleCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", x=" << m_x
                 << ", y=" << m_y
                 << ", width=" << m_width
index 372deac..b6e32d3 100644 (file)
@@ -54,7 +54,7 @@ const std::string SurfaceSetDimensionCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetDimensionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", width=" << m_width
                 << ", height=" << m_height
                 << ")";
index 35d7a43..4ba3743 100644 (file)
@@ -45,7 +45,7 @@ const std::string SurfaceSetKeyboardFocusCommand::getString()
     std::stringstream description;
     
     description << "SurfaceSetKeyboardFocusCommand("
-                << "m_surfId=" << m_surfId
+                << "m_surfId=" << m_surfId << "(0x" << std::hex << m_surfId << ")" << std::dec
                 << ")";
     return description.str();
 }
index 707ae2d..b72f87e 100644 (file)
@@ -56,7 +56,7 @@ const std::string SurfaceSetNativeContentCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetNativeContentCommand("
-                << "surfaceId=" << m_surfaceId
+                << "surfaceId=" << m_surfaceId << "(0x" << std::hex << m_surfaceId << ")" << std::dec
                 << ", nativeHandle=" << m_nativeHandle
                 << ", pixelformat=" << m_pixelformat
                 << ", OriginalWidth=" << m_originalWidth
index 617c655..53f387b 100644 (file)
@@ -50,7 +50,7 @@ const std::string SurfaceSetOpacityCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetOpacityCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", opacity=" << m_opacity
                 << ")";
     return description.str();
index 26d903b..96e511b 100644 (file)
@@ -49,7 +49,7 @@ const std::string SurfaceSetOrientationCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetOrientationCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", orientation=" << m_orientation
                 << ")";
     return description.str();
index 560ce09..1a0938f 100644 (file)
@@ -53,7 +53,7 @@ const std::string SurfaceSetPositionCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetPositionCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", m_x=" << m_x
                 << ", m_y=" << m_y
                 << ")";
index 0cf7629..0ac636f 100644 (file)
@@ -79,7 +79,7 @@ const std::string SurfaceSetShaderCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetShaderCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", shaderid=" << m_shaderid
                 << ")";
     return description.str();
index 70b987c..7b0a346 100644 (file)
@@ -54,7 +54,7 @@ const std::string SurfaceSetSourceRectangleCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetSourceRectangleCommand("
-                << "id=" << m_id
+                << "id=" << m_id << "(0x" << std::hex << m_id << ")" << std::dec
                 << ", x=" << m_x
                 << ", y=" << m_y
                 << ", width=" << m_width
index a1d3f12..2835187 100644 (file)
@@ -50,7 +50,7 @@ const std::string SurfaceSetVisibilityCommand::getString()
 {
     std::stringstream description;
     description << "SurfaceSetVisibilityCommand("
-                << "idtoSet=" << m_idtoSet
+                << "idtoSet=" << m_idtoSet << "(0x" << std::hex << m_idtoSet << ")" << std::dec
                 << ", visibility=" << m_visibility
                 << ")";
     return description.str();
index acc7c1f..8b80686 100644 (file)
@@ -45,7 +45,7 @@ const std::string SurfaceUpdateInputEventAcceptance::getString()
     std::stringstream description;
 
     description << "SurfaceUpdateInputEventAcceptance("
-                << "m_surfId=" << m_surfId
+                << "m_surfId=" << m_surfId << "(0x" << std::hex << m_surfId << ")" << std::dec
                 << ")";
     return description.str();
 }