aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-04 18:16:22 (GMT)
committerfluxgen <fluxgen>2003-08-04 18:16:22 (GMT)
commit19230e6927686b7fa5cdaf702b800f1d03a90479 (patch)
treede089a7c600493e320a70725c1e87f997a589e44
parente9f9c6104b61a9f7ec7df14235a9c5392f082bad (diff)
downloadfluxbox-19230e6927686b7fa5cdaf702b800f1d03a90479.zip
fluxbox-19230e6927686b7fa5cdaf702b800f1d03a90479.tar.bz2
minor fix
-rw-r--r--src/fluxbox.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 8eb6995..342338c 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.177 2003/07/28 20:10:05 fluxgen Exp $ 25// $Id: fluxbox.cc,v 1.178 2003/08/04 18:16:22 fluxgen Exp $
26 26
27#include "fluxbox.hh" 27#include "fluxbox.hh"
28 28
@@ -1122,9 +1122,9 @@ void Fluxbox::handleClientMessage(XClientMessageEvent &ce) {
1122 WinClient *winclient = searchWindow(ce.window); 1122 WinClient *winclient = searchWindow(ce.window);
1123 BScreen *screen = searchScreen(ce.window); 1123 BScreen *screen = searchScreen(ce.window);
1124 1124
1125 if (winclient && screen) { 1125 if (winclient || screen) {
1126 for (size_t i=0; i<m_atomhandler.size(); ++i) { 1126 for (size_t i=0; i<m_atomhandler.size(); ++i) {
1127 m_atomhandler[i]->checkClientMessage(ce, screen, winclient); 1127 m_atomhandler[i]->checkClientMessage(ce, screen, winclient);
1128 } 1128 }
1129 } 1129 }
1130 } 1130 }