diff options
author | fluxgen <fluxgen> | 2002-11-15 12:09:36 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-11-15 12:09:36 (GMT) |
commit | 79ad9df4de893b42df8e07197c6f75cf931e19b8 (patch) | |
tree | 977c9219e5791f4c0ad7981b8645fa0076333e6b /src/Clientmenu.cc | |
parent | 5f4aea396d35529b34af825e92486f4b07bcd162 (diff) | |
download | fluxbox_pavel-79ad9df4de893b42df8e07197c6f75cf931e19b8.zip fluxbox_pavel-79ad9df4de893b42df8e07197c6f75cf931e19b8.tar.bz2 |
cleaning
Diffstat (limited to 'src/Clientmenu.cc')
-rw-r--r-- | src/Clientmenu.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Clientmenu.cc b/src/Clientmenu.cc index c7fe7a9..e63aadc 100644 --- a/src/Clientmenu.cc +++ b/src/Clientmenu.cc | |||
@@ -38,7 +38,7 @@ | |||
38 | #include "Workspacemenu.hh" | 38 | #include "Workspacemenu.hh" |
39 | 39 | ||
40 | 40 | ||
41 | Clientmenu::Clientmenu(Workspace *ws) : Basemenu(ws->getScreen()), | 41 | Clientmenu::Clientmenu(Workspace &ws) : Basemenu(ws.getScreen()), |
42 | m_wkspc(ws) { | 42 | m_wkspc(ws) { |
43 | setInternalMenu(); | 43 | setInternalMenu(); |
44 | } | 44 | } |
@@ -48,16 +48,16 @@ void Clientmenu::itemSelected(int button, unsigned int index) { | |||
48 | if (button > 2) | 48 | if (button > 2) |
49 | return; | 49 | return; |
50 | //get the window with index of the item we selected | 50 | //get the window with index of the item we selected |
51 | FluxboxWindow *win = m_wkspc->getWindow(index); | 51 | FluxboxWindow *win = m_wkspc.getWindow(index); |
52 | if (win) { | 52 | if (win) { |
53 | if (button == 1) { | 53 | if (button == 1) { |
54 | if (! m_wkspc->isCurrent()) | 54 | if (! m_wkspc.isCurrent()) |
55 | m_wkspc->setCurrent(); | 55 | m_wkspc.setCurrent(); |
56 | } else if (button == 2) { | 56 | } else if (button == 2) { |
57 | if (! m_wkspc->isCurrent()) | 57 | if (! m_wkspc.isCurrent()) |
58 | win->deiconify(true, false); | 58 | win->deiconify(true, false); |
59 | } | 59 | } |
60 | m_wkspc->raiseWindow(win); | 60 | m_wkspc.raiseWindow(win); |
61 | win->setInputFocus(); | 61 | win->setInputFocus(); |
62 | } | 62 | } |
63 | 63 | ||