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:
ek Glogowski 2021-12-10Generally determine Rdb content from gb_*_set_componentfile callsStephan Bergmann 2021-12-09tdf#146094 Impress refuses to go in presentation modeNoel Grandin 2021-12-06Work around two -Werror=implicit-fallthrough=Stephan Bergmann 2021-12-01Fix --disable-avmedia for DESKTOP buildJan-Marek Glogowski 2021-11-28use more OInterfaceContainerHelper3 in slideshowNoel Grandin 2021-10-31Prepare for removal of non-const operator[] from Sequence in slideshowMike Kaganski 2021-10-15Avoid usage of incomplete types in member functions defined in-classStephan Bergmann 2021-10-15Remove non-const Sequence::begin()/end() in internal codeMike Kaganski 2021-10-14use std::vector::insert instead of push_backNoel Grandin 2021-10-11loplugin:moveparam in slideshowNoel Grandin 2021-10-06loplugin:moveparam in basegfxNoel Grandin 2021-09-28vcl: rename OutDevState to StackChris Sherlock 2021-09-15loplugin:constvarsNoel Grandin 2021-08-24WaE: silence -Wmaybe-uninitializedCaolán McNamara 2021-08-18Fix erroneous commentsMike Kaganski 2021-08-18undo changes to TextAlignCaolán McNamara 2021-08-10use o3tl::hash_combineCaolán McNamara 2021-08-08use some forward declaresCaolán McNamara 2021-08-05tdf#143728 Certain presentation crashes Impress after starting slideshowNoel Grandin 2021-08-05drop unneeded forward declareCaolán McNamara 2021-08-03Consolidate on C++17 std::scoped_lock instead of std::lock_guardNoel Grandin 2021-08-01osl::Mutex->std::mutex in EventQueueNoel Grandin 2021-07-30convert TextAlign to scoped enumCaolán McNamara 2021-07-23workaround accumulate() ambiguity on Mac with PCHCollabora