Merge "[Windows version] WindowImpl cleanup, fixes and improvements." into devel...
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / windows / timer-impl-win.cpp
index ae9335d..6b71c56 100755 (executable)
@@ -80,7 +80,7 @@ void Timer::Start()
 {
   if( 0 > mImpl->mId )
   {
-    mImpl->mId = WindowsPlatformImplementation::SetTimer( mImpl->mInterval, TimerSourceFunc, this );
+    mImpl->mId = WindowsPlatform::SetTimer( mImpl->mInterval, TimerSourceFunc, this );
   }
 }
 
@@ -88,7 +88,7 @@ void Timer::Stop()
 {
   if( 0 <= mImpl->mId )
   {
-    WindowsPlatformImplementation::KillTimer( mImpl->mId );
+    WindowsPlatform::KillTimer( mImpl->mId );
     mImpl->mId = -1;
   }
 }