aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-07-13 08:33:14 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-11-01 09:57:22 (GMT)
commit5b85f21a7ff560eafb1553b4529d2240000aa8b4 (patch)
treee3d595c3849f26038a7d8e7f588486d05d31e2ff /src/Window.cc
parentaec059644893c1314203d501b1d80cfd439f4d2f (diff)
downloadfluxbox_pavel-5b85f21a7ff560eafb1553b4529d2240000aa8b4.zip
fluxbox_pavel-5b85f21a7ff560eafb1553b4529d2240000aa8b4.tar.bz2
Emit the "modified" signal when a resource value is changed through C++ code
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index b1da798..474f839 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -3506,7 +3506,7 @@ void FluxboxWindow::updateButtons() {
3506 need_update = true; 3506 need_update = true;
3507 else { 3507 else {
3508 for (size_t j=0; j < new_size && !need_update; j++) { 3508 for (size_t j=0; j < new_size && !need_update; j++) {
3509 if ((*(*titlebar_side[i]))[j] != m_titlebar_buttons[i][j]) 3509 if ((*titlebar_side[i]).get()[j] != m_titlebar_buttons[i][j])
3510 need_update = true; 3510 need_update = true;
3511 } 3511 }
3512 } 3512 }