summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/presenter/PresenterPreviewCache.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /sd/source/ui/presenter/PresenterPreviewCache.cxx
parentIntroduce INetContentType::scan (diff)
downloadcore-567ef6d5782cdb729b49005caf6005610ce03e22.tar.gz
core-567ef6d5782cdb729b49005caf6005610ce03e22.zip
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'sd/source/ui/presenter/PresenterPreviewCache.cxx')
-rw-r--r--sd/source/ui/presenter/PresenterPreviewCache.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sd/source/ui/presenter/PresenterPreviewCache.cxx b/sd/source/ui/presenter/PresenterPreviewCache.cxx
index c9df2112b632..b8f43befe6e6 100644
--- a/sd/source/ui/presenter/PresenterPreviewCache.cxx
+++ b/sd/source/ui/presenter/PresenterPreviewCache.cxx
@@ -52,13 +52,13 @@ public:
// CacheContext
virtual void NotifyPreviewCreation (
CacheKey aKey,
- const Bitmap& rPreview);
- virtual bool IsIdle (void);
- virtual bool IsVisible (CacheKey aKey);
- virtual const SdrPage* GetPage (CacheKey aKey);
- virtual ::boost::shared_ptr<std::vector<CacheKey> > GetEntryList (bool bVisible);
- virtual sal_Int32 GetPriority (CacheKey aKey);
- virtual ::com::sun::star::uno::Reference<com::sun::star::uno::XInterface> GetModel (void);
+ const Bitmap& rPreview) SAL_OVERRIDE;
+ virtual bool IsIdle (void) SAL_OVERRIDE;
+ virtual bool IsVisible (CacheKey aKey) SAL_OVERRIDE;
+ virtual const SdrPage* GetPage (CacheKey aKey) SAL_OVERRIDE;
+ virtual ::boost::shared_ptr<std::vector<CacheKey> > GetEntryList (bool bVisible) SAL_OVERRIDE;
+ virtual sal_Int32 GetPriority (CacheKey aKey) SAL_OVERRIDE;
+ virtual ::com::sun::star::uno::Reference<com::sun::star::uno::XInterface> GetModel (void) SAL_OVERRIDE;
private:
Reference<container::XIndexAccess> mxSlides;