aboutsummaryrefslogtreecommitdiff
path: root/src/WorkspaceNameTool.cc
diff options
context:
space:
mode:
authorHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-21 13:25:47 (GMT)
committerHenrik Kinnunen <fluxgen@fluxbox.org>2008-09-21 13:25:47 (GMT)
commit71674739ec6de376273cb3c5b938da132e7035c5 (patch)
treeabd6e295067347b6f95622c9ed1a00c6396dc314 /src/WorkspaceNameTool.cc
parent86819abab91cf3ea20540278d00bad6a6b86d4b0 (diff)
downloadfluxbox-71674739ec6de376273cb3c5b938da132e7035c5.zip
fluxbox-71674739ec6de376273cb3c5b938da132e7035c5.tar.bz2
Changed workspace names signal in BScreen to use the new signal system
Diffstat (limited to 'src/WorkspaceNameTool.cc')
-rw-r--r--src/WorkspaceNameTool.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WorkspaceNameTool.cc b/src/WorkspaceNameTool.cc
index b6afad8..579592f 100644
--- a/src/WorkspaceNameTool.cc
+++ b/src/WorkspaceNameTool.cc
@@ -43,10 +43,10 @@ WorkspaceNameTool::WorkspaceNameTool(const FbTk::FbWindow &parent,
43 m_button.setText(m_screen.currentWorkspace()->name()); 43 m_button.setText(m_screen.currentWorkspace()->name());
44 44
45 // setup signals 45 // setup signals
46 screen.workspaceNamesSig().attach(this);
47
48 join(screen.currentWorkspaceSig(), 46 join(screen.currentWorkspaceSig(),
49 FbTk::MemFun(*this, &WorkspaceNameTool::updateForScreen)); 47 FbTk::MemFun(*this, &WorkspaceNameTool::updateForScreen));
48 join(screen.workspaceNamesSig(),
49 FbTk::MemFun(*this, &WorkspaceNameTool::updateForScreen));
50 50
51 theme.reconfigSig().attach(this); 51 theme.reconfigSig().attach(this);
52} 52}