aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2011-03-18 10:01:08 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2011-03-18 10:01:08 (GMT)
commit81b240e9762acde7e3682a6cec02932564d122f6 (patch)
tree663d7585383e3ea9a1f4cd9c69f7c49df2be0ee6
parent3a3df518236cd3cd982e952f63a59cc180c23c38 (diff)
downloadfluxbox_pavel-81b240e9762acde7e3682a6cec02932564d122f6.zip
fluxbox_pavel-81b240e9762acde7e3682a6cec02932564d122f6.tar.bz2
compile fix for clang, forward declaration of FocusControl was not enough
-rw-r--r--src/Screen.hh3
-rw-r--r--src/Window.hh2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 1a4ba9f..0f023b9 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -41,6 +41,8 @@
41#include "FbTk/Observer.hh" 41#include "FbTk/Observer.hh"
42#include "FbTk/Signal.hh" 42#include "FbTk/Signal.hh"
43 43
44#include "FocusControl.hh"
45
44#include <X11/Xresource.h> 46#include <X11/Xresource.h>
45 47
46#ifdef HAVE_CSTDIO 48#ifdef HAVE_CSTDIO
@@ -64,7 +66,6 @@ class Strut;
64class Slit; 66class Slit;
65class Toolbar; 67class Toolbar;
66class HeadArea; 68class HeadArea;
67class FocusControl;
68class ScreenPlacement; 69class ScreenPlacement;
69class TooltipWindow; 70class TooltipWindow;
70class OSDWindow; 71class OSDWindow;
diff --git a/src/Window.hh b/src/Window.hh
index 9c2037a..607ff69 100644
--- a/src/Window.hh
+++ b/src/Window.hh
@@ -36,6 +36,7 @@
36#include "FbWinFrame.hh" 36#include "FbWinFrame.hh"
37#include "Focusable.hh" 37#include "Focusable.hh"
38#include "FocusableTheme.hh" 38#include "FocusableTheme.hh"
39#include "FocusControl.hh"
39#include "WinButton.hh" 40#include "WinButton.hh"
40 41
41 42
@@ -48,7 +49,6 @@
48class WinClient; 49class WinClient;
49class FbWinFrameTheme; 50class FbWinFrameTheme;
50class BScreen; 51class BScreen;
51class FocusControl;
52class FbMenu; 52class FbMenu;
53 53
54namespace FbTk { 54namespace FbTk {