diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-05-05 11:37:20 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-05-05 11:37:20 (GMT) |
commit | f724b60469f0fdc5e4ab09cf8c27dfa25ce93822 (patch) | |
tree | 95ee20581e450fb7c79973420f513118a703b046 /src | |
parent | d30cd9c85066cbf25180ba392c16080a7598cdd5 (diff) | |
download | Qt-f724b60469f0fdc5e4ab09cf8c27dfa25ce93822.zip Qt-f724b60469f0fdc5e4ab09cf8c27dfa25ce93822.tar.gz Qt-f724b60469f0fdc5e4ab09cf8c27dfa25ce93822.tar.bz2 |
Fixed Q_OS_SYMBIAN ifdef usage in qfiledialog_p.h.
The old implementation caused:
qfiledialog_p.h:102: warning: garbage at end of `#ifdef' argument
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/dialogs/qfiledialog_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/dialogs/qfiledialog_p.h b/src/gui/dialogs/qfiledialog_p.h index bbd4af3..875cf4d 100644 --- a/src/gui/dialogs/qfiledialog_p.h +++ b/src/gui/dialogs/qfiledialog_p.h @@ -99,7 +99,7 @@ class QFSCompletor : public QCompleter { public: QFSCompletor(QAbstractItemModel *model, QObject *parent = 0) : QCompleter(model, parent), proxyModel(0), sourceModel(0) { -#ifdef Q_OS_WIN || defined(Q_OS_SYMBIAN) +#if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN) setCaseSensitivity(Qt::CaseInsensitive); #endif } |