diff options
author | Morten Johan Sørvig <morten.sorvig@nokia.com> | 2010-04-29 06:45:28 (GMT) |
---|---|---|
committer | Morten Johan Sørvig <morten.sorvig@nokia.com> | 2010-04-29 06:45:28 (GMT) |
commit | dbc2f9202688c56495b3f6d8cd3b977a9ae69a80 (patch) | |
tree | 35c22435f59ec3143e8978cc7853690436b11eee /src/gui/dialogs/qfileinfogatherer_p.h | |
parent | 255371252bdad3cd370ccf95337c94baae7277a5 (diff) | |
download | Qt-dbc2f9202688c56495b3f6d8cd3b977a9ae69a80.zip Qt-dbc2f9202688c56495b3f6d8cd3b977a9ae69a80.tar.gz Qt-dbc2f9202688c56495b3f6d8cd3b977a9ae69a80.tar.bz2 |
Compile with QT_NO_FSFILEENGINE.
Diffstat (limited to 'src/gui/dialogs/qfileinfogatherer_p.h')
-rw-r--r-- | src/gui/dialogs/qfileinfogatherer_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/dialogs/qfileinfogatherer_p.h b/src/gui/dialogs/qfileinfogatherer_p.h index 5abcd94..4fe691e 100644 --- a/src/gui/dialogs/qfileinfogatherer_p.h +++ b/src/gui/dialogs/qfileinfogatherer_p.h @@ -84,10 +84,13 @@ public: && permissions() == fileInfo.permissions(); } +#ifndef QT_NO_FSFILEENGINE bool isCaseSensitive() const { QFSFileEngine fe(mFileInfo.absoluteFilePath()); return fe.caseSensitive(); } +#endif + QFile::Permissions permissions() const { return mFileInfo.permissions(); } |