Fix various reported SVACE errors
[platform/core/uifw/dali-core.git] / dali / internal / event / events / pinch-gesture-detector-impl.cpp
index 43c971e..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.
@@ -38,7 +38,7 @@ namespace
 
 // Signals
 
-const char* const SIGNAL_PINCH_DETECTED = "pinch-detected";
+const char* const SIGNAL_PINCH_DETECTED = "pinchDetected";
 
 BaseHandle Create()
 {
@@ -78,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 ) )
   {