Browse Source

Fix member function visibility

Ben Payne 10 years ago
parent
commit
01471c9ef3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/gui/containers/guiRolloutCtrl.h

+ 1 - 1
Engine/source/gui/containers/guiRolloutCtrl.h

@@ -118,6 +118,7 @@ class GuiRolloutCtrl : public GuiTickCtrl
 
 
       DECLARE_CALLBACK( void, onCollapsed, () );
       DECLARE_CALLBACK( void, onCollapsed, () );
       /// @}
       /// @}
+      virtual void processTick();
 
 
    public:
    public:
    
    
@@ -152,7 +153,6 @@ class GuiRolloutCtrl : public GuiTickCtrl
 
 
       // Sizing Animation Functions
       // Sizing Animation Functions
       void animateTo( S32 height );
       void animateTo( S32 height );
-      virtual void processTick();
 
 
       void collapse() { animateTo( mHeader.extent.y ); }
       void collapse() { animateTo( mHeader.extent.y ); }
       void expand() { animateTo( mExpanded.extent.y ); }
       void expand() { animateTo( mExpanded.extent.y ); }