summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--INSTALL2
-rw-r--r--NEWS3
-rw-r--r--docs/INSTALL/win32.txt2
-rw-r--r--src/gui/shoplistbox.cpp2
5 files changed, 14 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 7bd7945c..d0f11279 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
diff --git a/INSTALL b/INSTALL
index 1f5b2394..014f0308 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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/
diff --git a/NEWS b/NEWS
index 545d6310..47421aef 100644
--- a/NEWS
+++ b/NEWS
@@ -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;