diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-23 17:13:53 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-25 12:46:37 +0000 |
commit | dcd440d17f8824921c7f99e833adc85209e20579 (patch) | |
tree | b23652d401689768344cd56ddf0fed55a763c5fa | |
parent | 48c1159b3d49edcc72c58663f6df0c0efce6c2ad (diff) |
WaE: consts the wrong way around
-rw-r--r-- | registry/tools/rdbedit.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/registry/tools/rdbedit.cxx b/registry/tools/rdbedit.cxx index 11e3e06cc..08b6f5f27 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; |