diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2024-04-12 13:26:23 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2024-04-12 15:00:05 +0200 |
commit | ab9f8038deeb50995f94b21035368ed66b8c128c (patch) | |
tree | c543db0df09f68ee586a9a3422a981b898a4d40e /tdeio | |
parent | b31821dd2489a41c04047bb71c25b61fccb02607 (diff) | |
download | tdelibs-ab9f8038deeb50995f94b21035368ed66b8c128c.tar.gz tdelibs-ab9f8038deeb50995f94b21035368ed66b8c128c.zip |
Fix compatibility with C++17.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit ab599e34e847d8db1560b8c5809e02be62060c58)
Diffstat (limited to 'tdeio')
-rw-r--r-- | tdeio/tdefile/kpropertiesdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeio/tdefile/kpropertiesdialog.cpp b/tdeio/tdefile/kpropertiesdialog.cpp index 2457f4a69..3796d96ad 100644 --- a/tdeio/tdefile/kpropertiesdialog.cpp +++ b/tdeio/tdefile/kpropertiesdialog.cpp @@ -2146,7 +2146,7 @@ void KFilePermissionsPropsPlugin::slotShowAdvancedPermissions() { d->fileSystemSupportsACLs = fileSystemSupportsACL( pathCString ); } if ( d->fileSystemSupportsACLs ) { - std::for_each( theNotSpecials.begin(), theNotSpecials.end(), std::mem_fun( &TQWidget::hide ) ); + std::for_each( theNotSpecials.begin(), theNotSpecials.end(), std::mem_fn( &TQWidget::hide ) ); extendedACLs = new KACLEditWidget( mainVBox ); if ( d->extendedACL.isValid() && d->extendedACL.isExtended() ) extendedACLs->setACL( d->extendedACL ); |