summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
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: