diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 09:43:06 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 09:43:06 +0100 |
commit | a39fb49535bbcdecd0a605250f82335aee690937 (patch) | |
tree | 94b8b631c1ca1bf95af14c076f451e8157cc1706 /l10ntools/inc/gConvSrc.hxx | |
parent | fba6f6fb514ee84bd42f765d11a5627590d04cfd (diff) |
various loplugin warnings
Change-Id: I9078ba18d8897a89a472fe75385542dac0c6bf78
Diffstat (limited to 'l10ntools/inc/gConvSrc.hxx')
-rw-r--r-- | l10ntools/inc/gConvSrc.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/inc/gConvSrc.hxx b/l10ntools/inc/gConvSrc.hxx index e8de3708a359..e9a21399ca1e 100644 --- a/l10ntools/inc/gConvSrc.hxx +++ b/l10ntools/inc/gConvSrc.hxx @@ -37,7 +37,7 @@ class convert_src : public convert_gen_impl bool mbExpectValue; convert_src(l10nMem& crMemory); - ~convert_src(); + virtual ~convert_src(); void setValue (char *syyText, char *sbuildValue); void setLang (char *syyText, bool bEnUs); @@ -47,7 +47,7 @@ class convert_src : public convert_gen_impl void setCmd (char *syyText); void setMacro (char *syyText); void setList (char *syyText); - void setListItem (char *syyText, bool bIsStart); + void setListItem (char const *syyText, bool bIsStart); void setNL (char *syyText, bool bMacro); void startBlock (char *syyText); void stopBlock (char *syyText); @@ -67,7 +67,7 @@ class convert_src : public convert_gen_impl bool mbInListItem; int miListCount; int miMacroLevel; - void execute(); + void execute() override; void trim(std::string& sText); void buildKey(std::string& sKey); void insertLanguagePart(std::string& sKey, std::string& sTextType); |