Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/goo/GString.h
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/goo/GString.h')
-rw-r--r--pdf/goo/GString.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pdf/goo/GString.h b/pdf/goo/GString.h
index 904f425..6fa24a6 100644
--- a/pdf/goo/GString.h
+++ b/pdf/goo/GString.h
@@ -24,11 +24,11 @@ public:
GString();
// Create a string from a C string.
- GString(char *s1);
+ GString(const char *s1);
// Create a string from <length1> chars at <s1>. This string
// can contain null characters.
- GString (char *s1, int length1);
+ GString (const char *s1, int length1);
// Copy a string.
GString(GString *str);