diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 3a2801b..d8a3f46 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -780,14 +780,14 @@ void FluxboxWindow::nextClient() { | |||
780 | if (numClients() <= 1) | 780 | if (numClients() <= 1) |
781 | return; | 781 | return; |
782 | 782 | ||
783 | screen().focusControl().cycleFocus(&m_clientlist, 0); | 783 | screen().focusControl().cycleFocus(m_clientlist, 0); |
784 | } | 784 | } |
785 | 785 | ||
786 | void FluxboxWindow::prevClient() { | 786 | void FluxboxWindow::prevClient() { |
787 | if (numClients() <= 1) | 787 | if (numClients() <= 1) |
788 | return; | 788 | return; |
789 | 789 | ||
790 | screen().focusControl().cycleFocus(&m_clientlist, 0, true); | 790 | screen().focusControl().cycleFocus(m_clientlist, 0, true); |
791 | } | 791 | } |
792 | 792 | ||
793 | 793 | ||