aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-12 14:59:16 (GMT)
committerfluxgen <fluxgen>2003-12-12 14:59:16 (GMT)
commit602115fe9ce666b8b43e50700e6b652c3da0af88 (patch)
treeba62a604cf316a55dd3af3b972359d1e30907bcd /src
parentd2d3fbc96c72209c281bd97ba4aee12912c16d89 (diff)
downloadfluxbox-602115fe9ce666b8b43e50700e6b652c3da0af88.zip
fluxbox-602115fe9ce666b8b43e50700e6b652c3da0af88.tar.bz2
removed next prev client from menu
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 3a0589c..ca69ff3 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -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: Window.cc,v 1.251 2003/12/10 23:32:41 fluxgen Exp $ 25// $Id: Window.cc,v 1.252 2003/12/12 14:59:16 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -3426,10 +3426,6 @@ void FluxboxWindow::setupWindow() {
3426 menu.insert("Iconify", iconify_cmd); 3426 menu.insert("Iconify", iconify_cmd);
3427 menu.insert("Raise", raise_cmd); 3427 menu.insert("Raise", raise_cmd);
3428 menu.insert("Lower", lower_cmd); 3428 menu.insert("Lower", lower_cmd);
3429 CommandRef next_client_cmd(new WindowCmd(*this, &FluxboxWindow::nextClient));
3430 CommandRef prev_client_cmd(new WindowCmd(*this, &FluxboxWindow::prevClient));
3431 menu.insert("Next Client", next_client_cmd);
3432 menu.insert("Prev Client", prev_client_cmd);
3433 3429
3434 menu.insert("Send To...", new SendToMenu(*this)); 3430 menu.insert("Send To...", new SendToMenu(*this));
3435 3431