summaryrefslogtreecommitdiff
path: root/goo
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2012-03-04 23:47:24 +0100
committerAlbert Astals Cid <aacid@kde.org>2012-03-04 23:47:24 +0100
commit2484bc0f29aef74c45ea39ef1e24804ed736154c (patch)
treed933c1fd76e165078d140b29239c943fd6edeef6 /goo
parent35c960d198d2efa97d15e962662114c5c31b8d20 (diff)
Fix mismatch in some functions declarations
Diffstat (limited to 'goo')
-rw-r--r--goo/GooString.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/goo/GooString.h b/goo/GooString.h
index 88913a4e..23558b0c 100644
--- a/goo/GooString.h
+++ b/goo/GooString.h
@@ -17,7 +17,7 @@
//
// Copyright (C) 2006 Kristian Høgsberg <krh@redhat.com>
// Copyright (C) 2006 Krzysztof Kowalczyk <kkowalczyk@gmail.com>
-// Copyright (C) 2008-2010 Albert Astals Cid <aacid@kde.org>
+// Copyright (C) 2008-2010, 2012 Albert Astals Cid <aacid@kde.org>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
@@ -174,7 +174,7 @@ private:
#else
static void formatInt(long x, char *buf, int bufSize,
GBool zeroFill, int width, int base,
- const char **p, int *len);
+ char **p, int *len);
#endif
#ifdef ULLONG_MAX
static void formatUInt(unsigned long long x, char *buf, int bufSize,
@@ -183,7 +183,7 @@ private:
#else
static void formatUInt(Gulong x, char *buf, int bufSize,
GBool zeroFill, int width, int base,
- const char **p, int *len);
+ char **p, int *len);
#endif
static void formatDouble(double x, char *buf, int bufSize, int prec,
GBool trim, char **p, int *len);