diff options
Diffstat (limited to 'registry/tools')
-rw-r--r-- | registry/tools/regcompare.cxx | 4 | ||||
-rw-r--r-- | registry/tools/regmerge.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/registry/tools/regcompare.cxx b/registry/tools/regcompare.cxx index bf6ebfa594f0..cd2ff305644e 100644 --- a/registry/tools/regcompare.cxx +++ b/registry/tools/regcompare.cxx @@ -65,8 +65,8 @@ public: protected: bool setRegName_Impl(char c, std::string const & param); - virtual void printUsage_Impl() const; - virtual bool initOptions_Impl (std::vector< std::string > & rArgs); + virtual void printUsage_Impl() const SAL_OVERRIDE; + virtual bool initOptions_Impl (std::vector< std::string > & rArgs) SAL_OVERRIDE; std::string m_regName1; std::string m_regName2; diff --git a/registry/tools/regmerge.cxx b/registry/tools/regmerge.cxx index 8353554068b6..2d74cc937b17 100644 --- a/registry/tools/regmerge.cxx +++ b/registry/tools/regmerge.cxx @@ -42,8 +42,8 @@ public: bool isVerbose() const { return m_bVerbose; } protected: - virtual void printUsage_Impl() const; - virtual bool initOptions_Impl(std::vector< std::string > & rArgs); + virtual void printUsage_Impl() const SAL_OVERRIDE; + virtual bool initOptions_Impl(std::vector< std::string > & rArgs) SAL_OVERRIDE; }; void Options_Impl::printUsage_Impl() const |