summaryrefslogtreecommitdiffstats
path: root/kig/modes/linkslabel.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2024-04-14 20:58:48 +0200
committerSlávek Banko <slavek.banko@axis.cz>2024-04-15 03:00:46 +0200
commit46fd80ef2d9be3be7ab361fa85fde98f900a39cf (patch)
treeb241ab811764ac819f31422e400a01074c7504c5 /kig/modes/linkslabel.cpp
parent2b50eee093583106e736f40d2e4780c661138645 (diff)
downloadtdeedu-r14.1.2.tar.gz
tdeedu-r14.1.2.zip
Fix compatibility with C++17.r14.1.2
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 0bcb76d981bf8ebd8806d6ae73cdcb77b5f4a124)
Diffstat (limited to 'kig/modes/linkslabel.cpp')
-rw-r--r--kig/modes/linkslabel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kig/modes/linkslabel.cpp b/kig/modes/linkslabel.cpp
index a9d0fa59..19cb744d 100644
--- a/kig/modes/linkslabel.cpp
+++ b/kig/modes/linkslabel.cpp
@@ -129,6 +129,6 @@ void LinksLabel::applyEdit( LinksLabelEditBuf& buf )
p->layout->activate();
- std::for_each( p->urllabels.begin(), p->urllabels.end(), mem_fun( &TQWidget::show ) );
- std::for_each( p->labels.begin(), p->labels.end(), mem_fun( &TQWidget::show ) );
+ std::for_each( p->urllabels.begin(), p->urllabels.end(), mem_fn( &TQWidget::show ) );
+ std::for_each( p->labels.begin(), p->labels.end(), mem_fn( &TQWidget::show ) );
}