diff --git a/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTest.h b/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTest.h
index 3f8c50bfb1af875c41ce5e236929121a31021b3d..e4090f2297f451155544d7c8c74ab009826a4380 100644
--- a/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTest.h
+++ b/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTest.h
@@ -29,15 +29,18 @@
 namespace armarx
 {
     class DebugDrawerTest :
-		virtual public Component
-	{
-		public:
-			// inherited from Component
-            virtual std::string getDefaultName() const { return "DebugDrawerTest"; }
-			virtual void onInitComponent();
-            virtual void onConnectComponent();
+        virtual public Component
+    {
+    public:
+        // inherited from Component
+        std::string getDefaultName() const override
+        {
+            return "DebugDrawerTest";
+        }
+        void onInitComponent() override;
+        void onConnectComponent() override;
 
-		private: 
+    private:
         DebugDrawerInterfacePrx prxDD;
     };
 
diff --git a/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTestApp.h b/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTestApp.h
index 12e4ec491be5d23ec49568a1ec8a948120795960..367810b2d5def1245c927b58bb480db92f5c9d8f 100644
--- a/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTestApp.h
+++ b/scenarios/tests/DebugDrawerTest/DebugDrawerTestApp/DebugDrawerTestApp.h
@@ -30,7 +30,7 @@ namespace armarx
     class DebugDrawerTestApp :
         virtual public armarx::Application
     {
-        void setup(const ManagedIceObjectRegistryInterfacePtr& registry, Ice::PropertiesPtr properties)
+        void setup(const ManagedIceObjectRegistryInterfacePtr& registry, Ice::PropertiesPtr properties) override
         {
             registry->addObject(Component::create<DebugDrawerTest>(properties));
         }