diff options
author | João Abecasis <joao.abecasis@nokia.com> | 2010-11-17 17:20:26 (GMT) |
---|---|---|
committer | João Abecasis <joao.abecasis@nokia.com> | 2010-11-22 16:37:19 (GMT) |
commit | 96acd93d741cd735f8c4bdaf6fdcf073192b1562 (patch) | |
tree | 180c43ba1d6b68001c16e6f57f1c06ecd2c24a4a /src/corelib/io/qfilesystemengine_symbian.cpp | |
parent | c5a5696ca5273fb0a8474b525d1df4a52463afbd (diff) | |
download | Qt-96acd93d741cd735f8c4bdaf6fdcf073192b1562.zip Qt-96acd93d741cd735f8c4bdaf6fdcf073192b1562.tar.gz Qt-96acd93d741cd735f8c4bdaf6fdcf073192b1562.tar.bz2 |
QFileSystemEngine: clean up unused code
resolveUser/GroupName(id) only make sense on Unix platforms, there's no
point in replicating them elsewhere.
bundleName is a Mac-only feature, so we can otherwise merge the default
implementation for other platforms.
Reviewed-by: Shane Kearns
Diffstat (limited to 'src/corelib/io/qfilesystemengine_symbian.cpp')
-rw-r--r-- | src/corelib/io/qfilesystemengine_symbian.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/corelib/io/qfilesystemengine_symbian.cpp b/src/corelib/io/qfilesystemengine_symbian.cpp index c4e8d36..3659a39 100644 --- a/src/corelib/io/qfilesystemengine_symbian.cpp +++ b/src/corelib/io/qfilesystemengine_symbian.cpp @@ -151,27 +151,6 @@ QFileSystemEntry QFileSystemEngine::absoluteName(const QFileSystemEntry &entry) return QFileSystemEntry(symbianCleanAbsolutePath(result), QFileSystemEntry::FromInternalPath()); } -//static -QString QFileSystemEngine::resolveUserName(uint userId) -{ - Q_UNUSED(userId) - return QString(); // no users or groups on symbian -} - -//static -QString QFileSystemEngine::resolveGroupName(uint groupId) -{ - Q_UNUSED(groupId) - return QString(); // no users or groups on symbian -} - -//static -QString QFileSystemEngine::bundleName(const QFileSystemEntry &entry) -{ - Q_UNUSED(entry); - return QString(); -} - void QFileSystemMetaData::fillFromTEntry(const TEntry& entry) { entryFlags &= ~(QFileSystemMetaData::SymbianTEntryFlags); |