diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-03-08 19:52:02 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-03-08 19:52:02 +0000 |
commit | 95e14ab79254cdddf5eb25984b74e370d31ab0c2 (patch) | |
tree | efd0e7d2632937504bbe4f67db760887750073b4 /src/gui/menuwindow.cpp | |
parent | 405c23831a4e1363f26f848215c8140f6d6d9f78 (diff) | |
download | mana-95e14ab79254cdddf5eb25984b74e370d31ab0c2.tar.gz mana-95e14ab79254cdddf5eb25984b74e370d31ab0c2.tar.bz2 mana-95e14ab79254cdddf5eb25984b74e370d31ab0c2.tar.xz mana-95e14ab79254cdddf5eb25984b74e370d31ab0c2.zip |
Some fixes for compiling with pedantic compiler settings and const char* checks.
Diffstat (limited to 'src/gui/menuwindow.cpp')
-rw-r--r-- | src/gui/menuwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/menuwindow.cpp b/src/gui/menuwindow.cpp index cb5fc654..811a10ab 100644 --- a/src/gui/menuwindow.cpp +++ b/src/gui/menuwindow.cpp @@ -53,12 +53,12 @@ MenuWindow::MenuWindow(): // Buttons // ------------ - char *buttonNames[] = { + const char *buttonNames[] = { "Status", "Equipment", "Inventory", "Skills", "Setup", 0 }; int x = 0, y = 3, h = 0; - for (char **curBtn = buttonNames; *curBtn; curBtn++) { + for (const char **curBtn = buttonNames; *curBtn; curBtn++) { gcn::Button *btn = new Button(*curBtn); btn->setEventId(*curBtn); btn->addActionListener(&menuWindowListener); |