[Libreoffice-commits] .: registry/tools
Caolán McNamara
caolan at kemper.freedesktop.org
Fri Mar 25 05:47:12 PDT 2011
registry/tools/rdbedit.cxx | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
New commits:
commit dcd440d17f8824921c7f99e833adc85209e20579
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Mar 23 17:13:53 2011 +0000
WaE: consts the wrong way around
diff --git a/registry/tools/rdbedit.cxx b/registry/tools/rdbedit.cxx
index 11e3e06..08b6f5f 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;
More information about the Libreoffice-commits
mailing list