[vlmc-devel] StackViewController: Commenting out animation parameter.
Hugo Beauzée-Luyssen
git at videolan.org
Sun Sep 2 13:37:35 CEST 2012
vlmc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Sat Sep 1 17:42:57 2012 +0300| [1b71a279d106660cd8e9f540649f66472eeda2e8] | committer: Hugo Beauzée-Luyssen
StackViewController: Commenting out animation parameter.
> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=1b71a279d106660cd8e9f540649f66472eeda2e8
---
src/Gui/library/StackViewController.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/Gui/library/StackViewController.cpp b/src/Gui/library/StackViewController.cpp
index 6b38feb..c341197 100644
--- a/src/Gui/library/StackViewController.cpp
+++ b/src/Gui/library/StackViewController.cpp
@@ -44,9 +44,9 @@ StackViewController::~StackViewController()
void
StackViewController::pushViewController( ViewController* viewController,
- bool animated )
+ bool /*animated*/ )
{
- animated = false;
+// animated = false;
connect( viewController, SIGNAL( destroyed() ),
this, SLOT( viewDestroyed() ) );
@@ -99,9 +99,9 @@ StackViewController::viewDestroyed()
}
void
-StackViewController::popViewController( bool animated )
+StackViewController::popViewController( bool /*animated*/ )
{
- animated = false;
+// animated = false;
if ( !m_controllerStack->size() )
return ;
More information about the Vlmc-devel
mailing list