summaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authorHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-21 11:44:48 (GMT)
committerHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-21 11:44:48 (GMT)
commit86819abab91cf3ea20540278d00bad6a6b86d4b0 (patch)
treec8020d6015f3607a67730c6873a062fe29743356 /src/Screen.cc
parentf5113e2ec1743d76ac414a020f617917c7933bb7 (diff)
downloadfluxbox_lack-86819abab91cf3ea20540278d00bad6a6b86d4b0.zip
fluxbox_lack-86819abab91cf3ea20540278d00bad6a6b86d4b0.tar.bz2
Changed current workspace 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 83bc92e..06f3146 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -343,7 +343,6 @@ BScreen::BScreen(FbTk::ResourceManager &rm,
343 m_iconlist_sig(*this), // icon list signal 343 m_iconlist_sig(*this), // icon list signal
344 m_workspacenames_sig(*this), // workspace names signal 344 m_workspacenames_sig(*this), // workspace names signal
345 m_workspace_area_sig(*this), // workspace area signal 345 m_workspace_area_sig(*this), // workspace area signal
346 m_currentworkspace_sig(*this), // current workspace signal
347 m_focusedwindow_sig(*this), // focused window signal 346 m_focusedwindow_sig(*this), // focused window signal
348 m_reconfigure_sig(*this), // reconfigure signal 347 m_reconfigure_sig(*this), // reconfigure signal
349 m_resize_sig(*this), 348 m_resize_sig(*this),
@@ -1199,7 +1198,7 @@ void BScreen::changeWorkspaceID(unsigned int id, bool revert) {
1199 1198
1200 FbTk::App::instance()->sync(false); 1199 FbTk::App::instance()->sync(false);
1201 1200
1202 m_currentworkspace_sig.notify(); 1201 m_currentworkspace_sig.emit(*this);
1203 1202
1204 // do this after atom handlers, so scripts can access new workspace number 1203 // do this after atom handlers, so scripts can access new workspace number
1205 Fluxbox::instance()->keys()->doAction(FocusIn, 0, 0, Keys::ON_DESKTOP); 1204 Fluxbox::instance()->keys()->doAction(FocusIn, 0, 0, Keys::ON_DESKTOP);