aboutsummaryrefslogtreecommitdiff
path: root/src/Workspace.hh
diff options
context:
space:
mode:
authormarkt <markt>2006-06-28 20:06:49 (GMT)
committermarkt <markt>2006-06-28 20:06:49 (GMT)
commita6625f8ca520a8f77ec54035e33af57bf6d5f9e4 (patch)
treeabeaca45fdabd2cfeeb43918aa8b616b50a76759 /src/Workspace.hh
parent6f2a566206faa0e6e8eff34f96888f6910644f56 (diff)
downloadfluxbox-a6625f8ca520a8f77ec54035e33af57bf6d5f9e4.zip
fluxbox-a6625f8ca520a8f77ec54035e33af57bf6d5f9e4.tar.bz2
cleanup dead function Workspace::setLastFocusedWindow
Diffstat (limited to 'src/Workspace.hh')
-rw-r--r--src/Workspace.hh6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Workspace.hh b/src/Workspace.hh
index ffcde8a..00c59fa 100644
--- a/src/Workspace.hh
+++ b/src/Workspace.hh
@@ -52,8 +52,6 @@ public:
52 unsigned int workspaceid = 0); 52 unsigned int workspaceid = 0);
53 ~Workspace(); 53 ~Workspace();
54 54
55 void setLastFocusedWindow(FluxboxWindow *w);
56
57 /// Set workspace name 55 /// Set workspace name
58 void setName(const std::string &name); 56 void setName(const std::string &name);
59 /// Deiconify all windows on this workspace 57 /// Deiconify all windows on this workspace
@@ -72,9 +70,6 @@ public:
72 BScreen &screen() { return m_screen; } 70 BScreen &screen() { return m_screen; }
73 const BScreen &screen() const { return m_screen; } 71 const BScreen &screen() const { return m_screen; }
74 72
75 FluxboxWindow *lastFocusedWindow() { return m_lastfocus; }
76 const FluxboxWindow *lastFocusedWindow() const { return m_lastfocus; }
77
78 FbTk::Menu &menu() { return m_clientmenu; } 73 FbTk::Menu &menu() { return m_clientmenu; }
79 const FbTk::Menu &menu() const { return m_clientmenu; } 74 const FbTk::Menu &menu() const { return m_clientmenu; }
80 /// name of this workspace 75 /// name of this workspace
@@ -97,7 +92,6 @@ private:
97 void placeWindow(FluxboxWindow &win); 92 void placeWindow(FluxboxWindow &win);
98 93
99 BScreen &m_screen; 94 BScreen &m_screen;
100 FluxboxWindow *m_lastfocus;
101 FbMenu m_clientmenu; 95 FbMenu m_clientmenu;
102 96
103 typedef std::vector<std::string> Group; 97 typedef std::vector<std::string> Group;