From 2b7ba2d3c35eef5517ef4c119143451fbf903b7f Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 23 Mar 2011 17:13:53 +0000 Subject: WaE: consts the wrong way around --- registry/tools/rdbedit.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'registry/tools') diff --git a/registry/tools/rdbedit.cxx b/registry/tools/rdbedit.cxx index c2b3d6a3dcf3..f85e3cddb8f4 100644 --- a/registry/tools/rdbedit.cxx +++ b/registry/tools/rdbedit.cxx @@ -120,15 +120,15 @@ public: OString prepareHelp(); OString prepareVersion(); - const OString& getProgramName() + const OString& getProgramName() const { return m_program; } - const OString& getTypeReg() + const OString& getTypeReg() const { return m_typeRegName; } - const OString& getKeyName() + const OString& getKeyName() const { return m_keyName; } - const Command getCommand() + Command getCommand() const { return m_command; } - bool verbose() + bool verbose() const { return m_bVerbose; } protected: OString m_program; -- cgit