aboutsummaryrefslogtreecommitdiff
path: root/lib/qt_connection_util.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-22 21:37:42 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-08-22 21:44:17 +0200
commitc75ef102c4b24c89f28a4773d7758adcbf4b6846 (patch)
tree293e21f7dc870ec2476568dafb04534de681974a /lib/qt_connection_util.h
parent8fa7dae82ac8e49b2a965377a663aedd08a5230b (diff)
downloadlibquotient-c75ef102c4b24c89f28a4773d7758adcbf4b6846.tar.gz
libquotient-c75ef102c4b24c89f28a4773d7758adcbf4b6846.zip
Cleanup and some extra comments
Diffstat (limited to 'lib/qt_connection_util.h')
-rw-r--r--lib/qt_connection_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/qt_connection_util.h b/lib/qt_connection_util.h
index 04dc6b27..699735d4 100644
--- a/lib/qt_connection_util.h
+++ b/lib/qt_connection_util.h
@@ -46,7 +46,7 @@ namespace _impl {
// arguments are always copied (at best - COWed) to the context of
// the slot. Therefore the slot decorator receives const ArgTs&...
// rather than ArgTs&&...
- // TODO: std::bind_front() instead of lambda.
+ // TODO (C++20): std::bind_front() instead of lambda.
c = QObject::connect(sender, signal, context,
[pc = std::move(pc),
decoratedSlot = std::move(decoratedSlot)](const ArgTs&... args) {