aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-05-04 23:38:06 (GMT)
committerrathnor <rathnor>2003-05-04 23:38:06 (GMT)
commit2ac0d82e451abd3cdc92df2a02c0da4eb8638ba1 (patch)
treeacb6c82d00dd1258773c45ef539f38b2f093e191 /src/Screen.hh
parent65bbfbe51b9d8531490708e83ba422c7dc53dc1a (diff)
downloadfluxbox-2ac0d82e451abd3cdc92df2a02c0da4eb8638ba1.zip
fluxbox-2ac0d82e451abd3cdc92df2a02c0da4eb8638ba1.tar.bz2
fix up focus problems
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 59e2df4..16644fb 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.hh,v 1.89 2003/04/28 22:42:29 fluxgen Exp $ 25// $Id: Screen.hh,v 1.90 2003/05/04 23:38:06 rathnor Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -150,6 +150,7 @@ public:
150 inline Icons &getIconList() { return iconList; } 150 inline Icons &getIconList() { return iconList; }
151 inline const FocusedWindows &getFocusedList() const { return focused_list; } 151 inline const FocusedWindows &getFocusedList() const { return focused_list; }
152 inline FocusedWindows &getFocusedList() { return focused_list; } 152 inline FocusedWindows &getFocusedList() { return focused_list; }
153 WinClient *getLastFocusedWindow(int workspace = -1);
153 const Workspaces &getWorkspacesList() const { return workspacesList; } 154 const Workspaces &getWorkspacesList() const { return workspacesList; }
154 const WorkspaceNames &getWorkspaceNames() const { return workspaceNames; } 155 const WorkspaceNames &getWorkspaceNames() const { return workspaceNames; }
155 /** 156 /**