diff options
Diffstat (limited to 'slideshow/source/engine/waitsymbol.hxx')
-rw-r--r-- | slideshow/source/engine/waitsymbol.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/slideshow/source/engine/waitsymbol.hxx b/slideshow/source/engine/waitsymbol.hxx index 177862e7c70a..a51c2b5b11d1 100644 --- a/slideshow/source/engine/waitsymbol.hxx +++ b/slideshow/source/engine/waitsymbol.hxx @@ -2,9 +2,9 @@ * * $RCSfile: waitsymbol.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: vg $ $Date: 2005-03-10 13:46:58 $ + * last change: $Author: rt $ $Date: 2005-03-30 08:01:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -118,13 +118,13 @@ private: EventMultiplexer& mrEventMultiplexer; - template <typename FuncT> - FuncT for_each_sprite( FuncT func ) const { + template <typename func_type> + void for_each_sprite( func_type const & func ) const + { ViewsVecT::const_iterator iPos( m_views.begin() ); const ViewsVecT::const_iterator iEnd( m_views.end() ); for ( ; iPos != iEnd; ++iPos ) func( iPos->second ); - return func; } bool m_bVisible; |