aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-06-24 14:57:54 (GMT)
committerfluxgen <fluxgen>2003-06-24 14:57:54 (GMT)
commit4d389149bce961f531a17079bd3fe42e8d938fd0 (patch)
tree23caff252e9a331dccbb038ed0cf718bed3d191f /src/Window.cc
parent225dc75dd9c85f573c9be95e87f3eb4acadc4ddc (diff)
downloadfluxbox_pavel-4d389149bce961f531a17079bd3fe42e8d938fd0.zip
fluxbox_pavel-4d389149bce961f531a17079bd3fe42e8d938fd0.tar.bz2
minor cleaning, removed window number
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Window.cc b/src/Window.cc
index be5d81f..c280dc8 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.195 2003/06/23 14:16:05 rathnor Exp $ 25// $Id: Window.cc,v 1.196 2003/06/24 14:57:05 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -380,7 +380,7 @@ void FluxboxWindow::init() {
380 // display connection 380 // display connection
381 display = FbTk::App::instance()->display(); 381 display = FbTk::App::instance()->display();
382 382
383 m_blackbox_attrib.workspace = m_workspace_number = m_window_number = -1; 383 m_blackbox_attrib.workspace = m_workspace_number = 0;
384 384
385 m_blackbox_attrib.flags = m_blackbox_attrib.attrib = m_blackbox_attrib.stack = 0; 385 m_blackbox_attrib.flags = m_blackbox_attrib.attrib = m_blackbox_attrib.stack = 0;
386 m_blackbox_attrib.premax_x = m_blackbox_attrib.premax_y = 0; 386 m_blackbox_attrib.premax_x = m_blackbox_attrib.premax_y = 0;
@@ -3245,7 +3245,7 @@ void FluxboxWindow::sendConfigureNotify() {
3245 event.xconfigure.above = frame().window().window(); 3245 event.xconfigure.above = frame().window().window();
3246 event.xconfigure.override_redirect = false; 3246 event.xconfigure.override_redirect = false;
3247 3247
3248 screen().updateNetizenConfigNotify(&event); 3248 screen().updateNetizenConfigNotify(event);
3249 } // end for 3249 } // end for
3250} 3250}
3251 3251