From f724b60469f0fdc5e4ab09cf8c27dfa25ce93822 Mon Sep 17 00:00:00 2001 From: Janne Anttila Date: Tue, 5 May 2009 14:37:20 +0300 Subject: 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 --- src/gui/dialogs/qfiledialog_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v0.12