summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/gui/button.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 059a806f..082c9b94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-09-16 Guillaume Melquiond <guillaume.melquiond@gmail.com>
+
+ * src/gui/button.cpp: Fixed improper const qualifier.
+
2007-09-10 Eugenio Favalli <elvenprogrammer@gmail.com>
* configure.ac, data/fonts/dejavusans.ttf,
diff --git a/src/gui/button.cpp b/src/gui/button.cpp
index 4114d330..4e236c33 100644
--- a/src/gui/button.cpp
+++ b/src/gui/button.cpp
@@ -46,7 +46,7 @@ enum{
struct ButtonData
{
- char *const file;
+ char const *file;
int gridX;
int gridY;
};