summaryrefslogtreecommitdiffstats
path: root/src/app/VFS/ftp_vfs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/VFS/ftp_vfs.cpp')
-rw-r--r--src/app/VFS/ftp_vfs.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/app/VFS/ftp_vfs.cpp b/src/app/VFS/ftp_vfs.cpp
index 2da0665..0e48ba2 100644
--- a/src/app/VFS/ftp_vfs.cpp
+++ b/src/app/VFS/ftp_vfs.cpp
@@ -113,25 +113,17 @@ void ftp_vfs::slotAddFiles( TDEIO::Job *, const TDEIO::UDSEntryList& entries ) {
currentUser = ""; // empty, but not TQString()
}
}
-#if KDE_IS_VERSION(3,5,0)
temp = new vfile( name, size, perm, mtime, symLink,
kfi.user(), kfi.group(), currentUser,
mime, symDest, mode, rwx, kfi.ACL().asString(),
kfi.defaultACL().asString() );
-#else
- temp = new vfile( name, size, perm, mtime, symLink, kfi.user(), kfi.group(), currentUser, mime, symDest, mode, rwx );
-#endif
}
-#if KDE_IS_VERSION(3,4,0)
if( !kfi.localPath().isEmpty() ){
temp->vfile_setUrl( kfi.localPath() );
} else {
temp->vfile_setUrl( kfi.url() );
}
-#else
- temp->vfile_setUrl( kfi.url() );
-#endif
temp->vfile_setIcon( kfi.iconName() );
foundVfile( temp );
}