summaryrefslogtreecommitdiff
path: root/plugingui/checkbox.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2015-09-28 15:14:58 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2015-09-28 15:14:58 +0200
commit9f01114c286cc2a19683ff69efc0381fc9b4be90 (patch)
tree54f026d5e30281b355b37de3e915de32897ba3d6 /plugingui/checkbox.cc
parentfbf9b94913bacfd9310b6ba27da803563545e686 (diff)
Use function operator() for notification instead opf notify(...).
Diffstat (limited to 'plugingui/checkbox.cc')
-rw-r--r--plugingui/checkbox.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/checkbox.cc b/plugingui/checkbox.cc
index ec0456f..6f95287 100644
--- a/plugingui/checkbox.cc
+++ b/plugingui/checkbox.cc
@@ -108,7 +108,7 @@ void CheckBox::internalSetChecked(bool checked)
}
state = checked;
- stateChangedNotifier.notify(state);
+ stateChangedNotifier(state);
repaintEvent(NULL);
}