Merge "Combine Internal::ProxyObject & Internal::Object" into tizen
[platform/core/uifw/dali-core.git] / dali / internal / event / events / tap-gesture-detector-impl.cpp
index cdfe65b..2d84a8d 100644 (file)
@@ -32,6 +32,10 @@ namespace Internal
 
 namespace
 {
+
+// Signals
+const char* const SIGNAL_TAP_DETECTED = "tap-detected";
+
 BaseHandle Create()
 {
   return Dali::TapGestureDetector::New();
@@ -39,7 +43,7 @@ BaseHandle Create()
 
 TypeRegistration mType( typeid(Dali::TapGestureDetector), typeid(Dali::GestureDetector), Create );
 
-SignalConnectorType signalConnector1( mType, Dali::TapGestureDetector::SIGNAL_TAP_DETECTED, &TapGestureDetector::DoConnectSignal );
+SignalConnectorType signalConnector1( mType, SIGNAL_TAP_DETECTED, &TapGestureDetector::DoConnectSignal );
 
 }
 
@@ -116,7 +120,7 @@ void TapGestureDetector::EmitTapGestureSignal(Dali::Actor tappedActor, const Tap
   // Guard against destruction during signal emission
   Dali::TapGestureDetector handle( this );
 
-  mDetectedSignalV2.Emit( tappedActor, tap );
+  mDetectedSignal.Emit( tappedActor, tap );
 }
 
 bool TapGestureDetector::DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor )
@@ -124,7 +128,7 @@ bool TapGestureDetector::DoConnectSignal( BaseObject* object, ConnectionTrackerI
   bool connected( true );
   TapGestureDetector* gesture = dynamic_cast<TapGestureDetector*>(object);
 
-  if ( Dali::TapGestureDetector::SIGNAL_TAP_DETECTED  == signalName )
+  if ( 0 == strcmp( signalName.c_str(), SIGNAL_TAP_DETECTED ) )
   {
     gesture->DetectedSignal().Connect( tracker, functor );
   }