summaryrefslogtreecommitdiff
path: root/unoidl/source/sourcefileprovider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoidl/source/sourcefileprovider.cxx')
-rw-r--r--unoidl/source/sourcefileprovider.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unoidl/source/sourcefileprovider.cxx b/unoidl/source/sourcefileprovider.cxx
index 4c522e8fc423..3348d1c5e8e0 100644
--- a/unoidl/source/sourcefileprovider.cxx
+++ b/unoidl/source/sourcefileprovider.cxx
@@ -29,7 +29,7 @@ public:
private:
virtual ~Cursor() throw () {}
- virtual rtl::Reference< Entity > getNext(OUString * name);
+ virtual rtl::Reference< Entity > getNext(OUString * name) SAL_OVERRIDE;
std::map< OUString, rtl::Reference<Entity> > const & map_; //TODO: extent
std::map< OUString, rtl::Reference<Entity> >::const_iterator iterator_;
@@ -55,9 +55,9 @@ public:
private:
virtual ~Module() throw () {}
- virtual std::vector<rtl::OUString> getMemberNames() const;
+ virtual std::vector<rtl::OUString> getMemberNames() const SAL_OVERRIDE;
- virtual rtl::Reference<MapCursor> createCursor() const
+ virtual rtl::Reference<MapCursor> createCursor() const SAL_OVERRIDE
{ return new Cursor(map); }
};