summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 14:57:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:10 +0100
commit13e4f86a51e26b89a22c4c6412c113f475392619 (patch)
treed3c277fefcfc7764ea3730309823cf6b829babc7 /slideshow
parent304e9c4c3734d7f0f4b62d221a9c70908b6d746d (diff)
-Werror,-Wunused-member-function
Change-Id: I69caf8ce9395c6318f1452e5bed3752e1c282528
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/expressionnodefactory.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/slideshow/source/engine/expressionnodefactory.cxx b/slideshow/source/engine/expressionnodefactory.cxx
index 1130ba794e4b..536a7fa8d5e8 100644
--- a/slideshow/source/engine/expressionnodefactory.cxx
+++ b/slideshow/source/engine/expressionnodefactory.cxx
@@ -167,21 +167,6 @@ namespace slideshow
}
};
- class ComposedExpression : public BinaryExpressionBase
- {
- public:
- ComposedExpression( const ExpressionNodeSharedPtr& rFirstArg,
- const ExpressionNodeSharedPtr& rSecondArg ) :
- BinaryExpressionBase( rFirstArg, rSecondArg )
- {
- }
-
- virtual double operator()( double t ) const
- {
- return (*mpFirstArg)( (*mpSecondArg)(t) );
- }
- };
-
class MinExpression : public BinaryExpressionBase
{
public: