diff options
author | fluxgen <fluxgen> | 2003-05-10 14:43:45 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-05-10 14:43:45 (GMT) |
commit | 3772c0125a4428dbeb17f613993ab73c41ee1450 (patch) | |
tree | 6b08d6b0838938205e8021bd5062cb74b8de7b08 | |
parent | b12ea8c13d87bed339e56324a1714cf8e94a8448 (diff) | |
download | fluxbox-3772c0125a4428dbeb17f613993ab73c41ee1450.zip fluxbox-3772c0125a4428dbeb17f613993ab73c41ee1450.tar.bz2 |
minor bugfix
-rw-r--r-- | src/fluxbox.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc index dbcc950..41fd7bf 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.131 2003/05/10 14:32:35 fluxgen Exp $ | 25 | // $Id: fluxbox.cc,v 1.132 2003/05/10 14:43:45 fluxgen Exp $ |
26 | 26 | ||
27 | #include "fluxbox.hh" | 27 | #include "fluxbox.hh" |
28 | 28 | ||
@@ -539,7 +539,7 @@ Fluxbox::~Fluxbox() { | |||
539 | } | 539 | } |
540 | 540 | ||
541 | void Fluxbox::eventLoop() { | 541 | void Fluxbox::eventLoop() { |
542 | while (m_shutdown) { | 542 | while (!m_shutdown) { |
543 | if (XPending(display())) { | 543 | if (XPending(display())) { |
544 | XEvent e; | 544 | XEvent e; |
545 | XNextEvent(display(), &e); | 545 | XNextEvent(display(), &e); |