aboutsummaryrefslogtreecommitdiff
path: root/src/WinClient.cc
diff options
context:
space:
mode:
authorHenrik Kinnunen <fluxgen@fluxbox.org>2010-03-26 17:15:45 (GMT)
committerHenrik Kinnunen <fluxgen@fluxbox.org>2010-03-26 17:15:45 (GMT)
commitdd8fcc8b7b4c2bccf90edf9b0acfa52e21f5d1ce (patch)
tree9847618adbc8b6c156e8c3ad41bb2d55d74c1916 /src/WinClient.cc
parent9ad388c5bf160c8a6c90d76065286540274685fd (diff)
downloadfluxbox-dd8fcc8b7b4c2bccf90edf9b0acfa52e21f5d1ce.zip
fluxbox-dd8fcc8b7b4c2bccf90edf9b0acfa52e21f5d1ce.tar.bz2
Changed title signal in Focusable to new signal system
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r--src/WinClient.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc
index 6ec15f3..7a10c12 100644
--- a/src/WinClient.cc
+++ b/src/WinClient.cc
@@ -341,13 +341,13 @@ void WinClient::updateTitle() {
341 return; 341 return;
342 342
343 m_title = string(Xutil::getWMName(window()), 0, 512); 343 m_title = string(Xutil::getWMName(window()), 0, 512);
344 titleSig().notify(); 344 titleSig().emit(m_title, *this);
345} 345}
346 346
347void WinClient::setTitle(const FbTk::FbString &title) { 347void WinClient::setTitle(const FbTk::FbString &title) {
348 m_title = title; 348 m_title = title;
349 m_title_override = true; 349 m_title_override = true;
350 titleSig().notify(); 350 titleSig().emit(m_title, *this);
351} 351}
352 352
353void WinClient::setIcon(const FbTk::PixmapWithMask& pm) { 353void WinClient::setIcon(const FbTk::PixmapWithMask& pm) {
@@ -355,7 +355,7 @@ void WinClient::setIcon(const FbTk::PixmapWithMask& pm) {
355 m_icon.pixmap().copy(pm.pixmap()); 355 m_icon.pixmap().copy(pm.pixmap());
356 m_icon.mask().copy(pm.mask()); 356 m_icon.mask().copy(pm.mask());
357 m_icon_override = true; 357 m_icon_override = true;
358 titleSig().notify(); 358 titleSig().emit(m_title, *this);
359} 359}
360 360
361void WinClient::setFluxboxWindow(FluxboxWindow *win) { 361void WinClient::setFluxboxWindow(FluxboxWindow *win) {