aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-15 13:57:18 (GMT)
committerfluxgen <fluxgen>2003-08-15 13:57:18 (GMT)
commit1ed6519a203a863a060d1a8b6cfee71fddcd3563 (patch)
treef54e9e80f0c4d000225a21c5af6b20d1c661ec21 /src
parent99a12262fddf51e81e2aa580745ff04dff56ce99 (diff)
downloadfluxbox-1ed6519a203a863a060d1a8b6cfee71fddcd3563.zip
fluxbox-1ed6519a203a863a060d1a8b6cfee71fddcd3563.tar.bz2
minor fix
Diffstat (limited to 'src')
-rw-r--r--src/fluxbox.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 182e330..17e2268 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.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: fluxbox.cc,v 1.184 2003/08/12 21:00:54 fluxgen Exp $ 25// $Id: fluxbox.cc,v 1.185 2003/08/15 13:57:18 fluxgen Exp $
26 26
27#include "fluxbox.hh" 27#include "fluxbox.hh"
28 28
@@ -1104,12 +1104,12 @@ void Fluxbox::handleClientMessage(XClientMessageEvent &ce) {
1104 } else { 1104 } else {
1105 WinClient *winclient = searchWindow(ce.window); 1105 WinClient *winclient = searchWindow(ce.window);
1106 BScreen *screen = searchScreen(ce.window); 1106 BScreen *screen = searchScreen(ce.window);
1107 1107 // note: we dont need screen nor winclient to be non-null,
1108 if (winclient || screen) { 1108 // it's up to the atomhandler to check that
1109 for (size_t i=0; i<m_atomhandler.size(); ++i) { 1109 for (size_t i=0; i<m_atomhandler.size(); ++i) {
1110 m_atomhandler[i]->checkClientMessage(ce, screen, winclient); 1110 m_atomhandler[i]->checkClientMessage(ce, screen, winclient);
1111 }
1112 } 1111 }
1112
1113 } 1113 }
1114} 1114}
1115 1115