Fix various reported SVACE errors
[platform/core/uifw/dali-core.git] / dali / internal / event / events / pinch-gesture-detector-impl.cpp
index 370c1e8..0324cb0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,6 +18,9 @@
 // CLASS HEADER
 #include <dali/internal/event/events/pinch-gesture-detector-impl.h>
 
+// EXTERNAL INCLUDES
+#include <cstring> // for strcmp
+
 // INTERNAL INCLUDES
 #include <dali/public-api/events/pinch-gesture.h>
 #include <dali/public-api/object/type-registry.h>
@@ -35,7 +38,7 @@ namespace
 
 // Signals
 
-const char* const SIGNAL_PINCH_DETECTED = "pinch-detected";
+const char* const SIGNAL_PINCH_DETECTED = "pinchDetected";
 
 BaseHandle Create()
 {
@@ -75,6 +78,7 @@ bool PinchGestureDetector::DoConnectSignal( BaseObject* object, ConnectionTracke
 {
   bool connected( true );
   PinchGestureDetector* gesture = dynamic_cast<PinchGestureDetector*>(object);
+  DALI_ASSERT_DEBUG( gesture && "object is not the correct type" ); // TypeRegistry should guarantee that this is correct, but confirm with just a debug assert
 
   if ( 0 == strcmp( signalName.c_str(), SIGNAL_PINCH_DETECTED ) )
   {