diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-09-16 09:50:58 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-09-16 09:50:58 +0000 |
commit | 2f027ebcf8f0ad78f7edf58af7dda94d89034c85 (patch) | |
tree | cd54a2c346c3bac19c61361605821cb27cb8ae79 /src/gui | |
parent | 5c9aa34fe5f9e9c8df8afda66a231e359dc797e3 (diff) | |
download | mana-2f027ebcf8f0ad78f7edf58af7dda94d89034c85.tar.gz mana-2f027ebcf8f0ad78f7edf58af7dda94d89034c85.tar.bz2 mana-2f027ebcf8f0ad78f7edf58af7dda94d89034c85.tar.xz mana-2f027ebcf8f0ad78f7edf58af7dda94d89034c85.zip |
Fixed improper const qualifier.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; }; |