From d18aa53b8b39aadd840968caa6fd9ab6f462175e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 7 Mar 2026 11:07:29 +0900 Subject: Remove use of KDE_IS_VERSION Signed-off-by: Michele Calgaro --- src/app/Synchronizer/synchronizer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/app/Synchronizer/synchronizer.cpp') diff --git a/src/app/Synchronizer/synchronizer.cpp b/src/app/Synchronizer/synchronizer.cpp index 7388dd4..38c3820 100644 --- a/src/app/Synchronizer/synchronizer.cpp +++ b/src/app/Synchronizer/synchronizer.cpp @@ -66,7 +66,7 @@ -#if KDE_IS_VERSION(3,5,0) && defined( HAVE_POSIX_ACL ) +#if defined( HAVE_POSIX_ACL ) #include #ifdef HAVE_NON_POSIX_ACL_EXTENSIONS #include @@ -1076,7 +1076,7 @@ void Synchronizer::slotTaskFinished(TDEIO::Job *job ) chmod( (const char *)( leftURL.path( -1 ).local8Bit() ), item->rightMode() & 07777 ); -#if KDE_IS_VERSION(3,5,0) && defined( HAVE_POSIX_ACL ) +#if defined( HAVE_POSIX_ACL ) if( !item->rightACL().isNull() ) { acl_t acl = acl_from_text( item->rightACL().latin1() ); @@ -1117,7 +1117,7 @@ void Synchronizer::slotTaskFinished(TDEIO::Job *job ) chmod( (const char *)( rightURL.path( -1 ).local8Bit() ), item->leftMode() & 07777 ); -#if KDE_IS_VERSION(3,5,0) && defined( HAVE_POSIX_ACL ) +#if defined( HAVE_POSIX_ACL ) if( !item->leftACL().isNull() ) { acl_t acl = acl_from_text( item->leftACL().latin1() ); -- cgit v1.2.3