aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authorHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-28 16:13:30 (GMT)
committerHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-28 16:13:30 (GMT)
commit9aee5b80cb32119a633151a489a2bd85b63e3b28 (patch)
treeaaf370b73f2c9802eb804312ac64ade1a141b382 /src/Screen.cc
parent2fcc0fd9e7b92dbb440fd67e34fdbab05be7d98d (diff)
downloadfluxbox-9aee5b80cb32119a633151a489a2bd85b63e3b28.zip
fluxbox-9aee5b80cb32119a633151a489a2bd85b63e3b28.tar.bz2
Changed resize signal in BScreen to use the new signal system
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 66ab0fd..a4778be 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -340,7 +340,6 @@ BScreen::BScreen(FbTk::ResourceManager &rm,
340 const string &altscreenname, 340 const string &altscreenname,
341 int scrn, int num_layers) : 341 int scrn, int num_layers) :
342 m_reconfigure_sig(*this), // reconfigure signal 342 m_reconfigure_sig(*this), // reconfigure signal
343 m_resize_sig(*this),
344 m_layermanager(num_layers), 343 m_layermanager(num_layers),
345 m_focused_windowtheme(new FbWinFrameTheme(scrn, ".focus", ".Focus")), 344 m_focused_windowtheme(new FbWinFrameTheme(scrn, ".focus", ".Focus")),
346 m_unfocused_windowtheme(new FbWinFrameTheme(scrn, ".unfocus", ".Unfocus")), 345 m_unfocused_windowtheme(new FbWinFrameTheme(scrn, ".unfocus", ".Unfocus")),
@@ -1931,7 +1930,7 @@ void BScreen::updateSize() {
1931 m_root_theme->reconfigTheme(); 1930 m_root_theme->reconfigTheme();
1932 1931
1933 // send resize notify 1932 // send resize notify
1934 m_resize_sig.notify(); 1933 m_resize_sig.emit(*this);
1935 m_workspace_area_sig.emit(*this); 1934 m_workspace_area_sig.emit(*this);
1936 1935
1937 // move windows out of inactive heads 1936 // move windows out of inactive heads