diff Framework/Viewport/WidgetViewport.cpp @ 386:e33659decec5

renamed UpdateContent() as DoAnimation()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 09 Nov 2018 17:06:28 +0100
parents 6cc3ce74dc05
children b70e9be013e4
line wrap: on
line diff
--- a/Framework/Viewport/WidgetViewport.cpp	Wed Nov 07 20:49:41 2018 +0100
+++ b/Framework/Viewport/WidgetViewport.cpp	Fri Nov 09 17:06:28 2018 +0100
@@ -247,11 +247,11 @@
   }
 
 
-  bool WidgetViewport::HasUpdateContent()
+  bool WidgetViewport::HasAnimation()
   {
     if (centralWidget_.get() != NULL)
     {
-      return centralWidget_->HasUpdateContent();
+      return centralWidget_->HasAnimation();
     }
     else
     {
@@ -260,11 +260,11 @@
   }
    
 
-  void WidgetViewport::UpdateContent()
+  void WidgetViewport::DoAnimation()
   {
     if (centralWidget_.get() != NULL)
     {
-      centralWidget_->UpdateContent();
+      centralWidget_->DoAnimation();
     }
   }
 }