aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-29 10:50:32 (GMT)
committerfluxgen <fluxgen>2003-08-29 10:50:32 (GMT)
commit6980502df263874712da3d0d4079675e55af562d (patch)
treef64aae2ad5f605e148076889ff3c9e12686966a9 /src
parent86f59cdcb09c83feb6da52b354309f342a41249e (diff)
downloadfluxbox-6980502df263874712da3d0d4079675e55af562d.zip
fluxbox-6980502df263874712da3d0d4079675e55af562d.tar.bz2
using signals for slit
Diffstat (limited to 'src')
-rw-r--r--src/Screen.cc18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 0e57d77..0ecbeaa 100644
--- a/src/Screen.cc
+++ b/src/Screen.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: Screen.cc,v 1.228 2003/08/27 14:26:37 fluxgen Exp $ 25// $Id: Screen.cc,v 1.229 2003/08/29 10:50:32 fluxgen Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -654,12 +654,6 @@ void BScreen::reconfigure() {
654 } 654 }
655 } 655 }
656 656
657
658#ifdef SLIT
659 if (slit())
660 slit()->reconfigure();
661#endif // SLIT
662
663 // reconfigure workspaces 657 // reconfigure workspaces
664 for_each(m_workspaces_list.begin(), 658 for_each(m_workspaces_list.begin(),
665 m_workspaces_list.end(), 659 m_workspaces_list.end(),
@@ -2020,11 +2014,6 @@ void BScreen::shutdown() {
2020 m_workspaces_list.end(), 2014 m_workspaces_list.end(),
2021 mem_fun(&Workspace::shutdown)); 2015 mem_fun(&Workspace::shutdown));
2022 2016
2023#ifdef SLIT
2024 if (m_slit.get())
2025 m_slit->shutdown();
2026#endif // SLIT
2027
2028} 2017}
2029 2018
2030 2019
@@ -2251,11 +2240,6 @@ void BScreen::updateSize() {
2251 // reset background 2240 // reset background
2252 m_root_theme->reconfigTheme(); 2241 m_root_theme->reconfigTheme();
2253 2242
2254#ifdef SLIT
2255 if (slit())
2256 slit()->reconfigure();
2257#endif // SLIT
2258
2259 m_resize_sig.notify(); 2243 m_resize_sig.notify();
2260} 2244}
2261 2245