From 95e14ab79254cdddf5eb25984b74e370d31ab0c2 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Wed, 8 Mar 2006 19:52:02 +0000 Subject: Some fixes for compiling with pedantic compiler settings and const char* checks. --- src/gui/buysell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/buysell.cpp') diff --git a/src/gui/buysell.cpp b/src/gui/buysell.cpp index ccd82db5..d4c33d30 100644 --- a/src/gui/buysell.cpp +++ b/src/gui/buysell.cpp @@ -31,12 +31,12 @@ BuySellDialog::BuySellDialog(): Window("Shop") { Button *buyButton = 0; - char *buttonNames[] = { + const char *buttonNames[] = { "Buy", "Sell", "Cancel", 0 }; int x = 10, y = 10; - for (char **curBtn = buttonNames; *curBtn; curBtn++) + for (const char **curBtn = buttonNames; *curBtn; curBtn++) { Button *btn = new Button(*curBtn); if (!buyButton) buyButton = btn; // For focus request -- cgit v1.2.3-70-g09d2