summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-10 22:00:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-12 09:09:59 +0100
commit6bc7ca66d938f4e02b084fe4ab215a370058ff2a (patch)
tree2117bb17594b27f668fc562748cb6f794642359b /svx
parent07f9a847f027139d75ac5eb7c8b48a8bb8cb1324 (diff)
c++ defaults to void
Diffstat (limited to 'svx')
-rw-r--r--svx/source/inc/DGColorNameLookUp.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/inc/DGColorNameLookUp.hxx b/svx/source/inc/DGColorNameLookUp.hxx
index 9c766d0f9043..8ed88322228b 100644
--- a/svx/source/inc/DGColorNameLookUp.hxx
+++ b/svx/source/inc/DGColorNameLookUp.hxx
@@ -55,7 +55,7 @@ public:
/** Return the single instance of this class. Use this to look up
color names with the <member>LookUpColor()</member> method.
*/
- static DGColorNameLookUp& Instance (void);
+ static DGColorNameLookUp& Instance();
/** Return the color name of the color expressed by the given integer.
@param nColor
@@ -83,10 +83,10 @@ private:
static DGColorNameLookUp* mpInstance;
/// Create a new (the only) instance of this class.
- DGColorNameLookUp (void);
+ DGColorNameLookUp();
/// The destructor is never called.
- ~DGColorNameLookUp (void);
+ ~DGColorNameLookUp();
/// The copy constructor is not implemented.
DGColorNameLookUp (const DGColorNameLookUp&);