summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--src/gui/tabbedcontainer.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a12eedb9..fed9cb27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2005-08-25 Björn Steinbrink <B.Steinbrink@gmx.de>
+ * src/gui/tabbedcontainer.h: Fix include path for guichanfwd.h.
* src/gui/tabbedcontainer.cpp, src/gui/tabbedcontainer.h: Added a new
container type, that allows switching between the contents through a tab
bar at the top of the container.
diff --git a/src/gui/tabbedcontainer.h b/src/gui/tabbedcontainer.h
index a2c4c90c..89c10c1c 100644
--- a/src/gui/tabbedcontainer.h
+++ b/src/gui/tabbedcontainer.h
@@ -31,7 +31,7 @@
#include <guichan/widgets/container.hpp>
-#include "guichanfwd.h"
+#include "../guichanfwd.h"
class TabbedContainer : public gcn::Container, public gcn::ActionListener
{