summaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 23bc417..83bc92e 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -341,7 +341,6 @@ BScreen::BScreen(FbTk::ResourceManager &rm,
341 int scrn, int num_layers) : 341 int scrn, int num_layers) :
342 m_clientlist_sig(*this), // client signal 342 m_clientlist_sig(*this), // client signal
343 m_iconlist_sig(*this), // icon list signal 343 m_iconlist_sig(*this), // icon list signal
344 m_workspacecount_sig(*this), // workspace count signal
345 m_workspacenames_sig(*this), // workspace names signal 344 m_workspacenames_sig(*this), // workspace names signal
346 m_workspace_area_sig(*this), // workspace area signal 345 m_workspace_area_sig(*this), // workspace area signal
347 m_currentworkspace_sig(*this), // current workspace signal 346 m_currentworkspace_sig(*this), // current workspace signal
@@ -1110,7 +1109,7 @@ int BScreen::addWorkspace() {
1110 } 1109 }
1111 1110
1112 saveWorkspaces(m_workspaces_list.size()); 1111 saveWorkspaces(m_workspaces_list.size());
1113 workspaceCountSig().notify(); 1112 workspaceCountSig().emit( *this );
1114 1113
1115 return m_workspaces_list.size(); 1114 return m_workspaces_list.size();
1116 1115
@@ -1140,7 +1139,7 @@ int BScreen::removeLastWorkspace() {
1140 m_workspaces_list.pop_back(); 1139 m_workspaces_list.pop_back();
1141 1140
1142 saveWorkspaces(m_workspaces_list.size()); 1141 saveWorkspaces(m_workspaces_list.size());
1143 workspaceCountSig().notify(); 1142 workspaceCountSig().emit( *this );
1144 // must be deleted after we send notify!! 1143 // must be deleted after we send notify!!
1145 // so we dont get bad pointers somewhere 1144 // so we dont get bad pointers somewhere
1146 // while processing the notify signal 1145 // while processing the notify signal