aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 3bf7731..9363edb 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.216 2003/08/11 17:04:32 fluxgen Exp $ 25// $Id: Window.cc,v 1.217 2003/08/13 09:42:22 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -381,8 +381,8 @@ void FluxboxWindow::init() {
381 btn->show(); 381 btn->show();
382 FbTk::EventManager &evm = *FbTk::EventManager::instance(); 382 FbTk::EventManager &evm = *FbTk::EventManager::instance();
383 // we need motion notify so we mask it 383 // we need motion notify so we mask it
384 btn->window().setEventMask(ExposureMask | ButtonPressMask | ButtonReleaseMask | 384 btn->setEventMask(ExposureMask | ButtonPressMask | ButtonReleaseMask |
385 ButtonMotionMask | EnterWindowMask); 385 ButtonMotionMask | EnterWindowMask);
386 386
387 FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(*m_client)); 387 FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(*m_client));
388 btn->setOnClick(set_client_cmd); 388 btn->setOnClick(set_client_cmd);
@@ -619,9 +619,9 @@ void FluxboxWindow::attachClient(WinClient &client) {
619 frame().addLabelButton(*btn); 619 frame().addLabelButton(*btn);
620 btn->show(); 620 btn->show();
621 // we need motion notify so we mask it 621 // we need motion notify so we mask it
622 btn->window().setEventMask(ExposureMask | ButtonPressMask | 622 btn->setEventMask(ExposureMask | ButtonPressMask |
623 ButtonReleaseMask | ButtonMotionMask | 623 ButtonReleaseMask | ButtonMotionMask |
624 EnterWindowMask); 624 EnterWindowMask);
625 625
626 626
627 FbTk::RefCount<FbTk::Command> 627 FbTk::RefCount<FbTk::Command>
@@ -650,9 +650,9 @@ void FluxboxWindow::attachClient(WinClient &client) {
650 btn->show(); 650 btn->show();
651 FbTk::EventManager &evm = *FbTk::EventManager::instance(); 651 FbTk::EventManager &evm = *FbTk::EventManager::instance();
652 // we need motion notify so we mask it 652 // we need motion notify so we mask it
653 btn->window().setEventMask(ExposureMask | ButtonPressMask | 653 btn->setEventMask(ExposureMask | ButtonPressMask |
654 ButtonReleaseMask | ButtonMotionMask | 654 ButtonReleaseMask | ButtonMotionMask |
655 EnterWindowMask); 655 EnterWindowMask);
656 656
657 657
658 FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(client)); 658 FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(client));