diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | docs/INSTALL/win32.txt | 2 | ||||
-rw-r--r-- | src/gui/shoplistbox.cpp | 2 |
5 files changed, 14 insertions, 6 deletions
@@ -1,7 +1,12 @@ -2007-01-22 Bjørn Lindeijer <bjorn@lindeijer.nl> +2007-01-23 Bjørn Lindeijer <bjorn@lindeijer.nl> - * src/gui/updatewindow.cpp: Identify ourselves when requesting files from - the update server. + * src/gui/shoplistbox.cpp, docs/INSTALL/win32.txt, INSTALL, NEWS: + Upgraded to Guichan 0.6.1. + +2007-01-22 Bjørn Lindeijer <bjorn@lindeijer.nl> + + * src/gui/updatewindow.cpp: Identify ourselves when requesting files + from the update server. 2007-01-17 Eugenio Favalli <elvenprogrammer@gmail.com> @@ -20,7 +20,7 @@ and some libraries. The required libraries are: * SDL_mixer http://www.libsdl.org/projects/SDL_mixer/ * SDL_image http://www.libsdl.org/projects/SDL_image/ * SDL_net http://www.libsdl.org/projects/SDL_net/ -* Guichan 0.6.0 http://guichan.sourceforge.net/ +* Guichan 0.6.1 http://guichan.sourceforge.net/ * libxml2 http://www.xmlsoft.org/ * physfs 1.0.x http://icculus.org/physfs/ * zlib 1.2.x http://www.gzip.org/zlib/ @@ -1,3 +1,6 @@ +0.0.22.2 (...) +- Updated to work with Guichan 0.6.1 (older versions no longer supported) + 0.0.22.1 (15 January 2007) - Updated to work with Guichan 0.6.0 (older versions no longer supported) - Fixed mouse coordinates in debug window diff --git a/docs/INSTALL/win32.txt b/docs/INSTALL/win32.txt index 7f5d80b6..1a1e527f 100644 --- a/docs/INSTALL/win32.txt +++ b/docs/INSTALL/win32.txt @@ -28,7 +28,7 @@ Besides a C++ compiler, TMW depends on the following libraries: 1) SDL 2) SDL_mixer 3) SDL_image -4) Guichan 0.6.0 +4) Guichan 0.6.1 5) libiconv 5) libxml2 6) PhysFS diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index 8cf0b639..946f518b 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -112,7 +112,7 @@ void ShopListBox::setSelected(int selected) mSelected = std::min(mListModel->getNumberOfElements() - 1, std::max(-1, selected)); - gcn::BasicContainer *parent = getParent(); + gcn::Widget *parent = getParent(); if (parent) { gcn::Rectangle scroll; |