summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs
diff options
context:
space:
mode:
authorTomi Vihria <tomi.vihria@nokia.com>2011-05-18 14:43:14 (GMT)
committerLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-05-25 17:11:52 (GMT)
commitc9eb2ffd1ed940133392831747605bf735d92086 (patch)
tree44d3e095b65c6682c22cb227a2341b5e65557bcf /src/gui/dialogs
parent9663956626fe95ace6baa4cf0ba30898a88147a7 (diff)
downloadQt-c9eb2ffd1ed940133392831747605bf735d92086.zip
Qt-c9eb2ffd1ed940133392831747605bf735d92086.tar.gz
Qt-c9eb2ffd1ed940133392831747605bf735d92086.tar.bz2
Fixing Linux compatibility issues for Symbian
The patch applies everything from the original, except for the filename case changes in LIBS which are handled differently based on the auto-detected is_using_gnupoc CONFIG value. Reviewed-by: Laszlo Agocs
Diffstat (limited to 'src/gui/dialogs')
-rw-r--r--src/gui/dialogs/dialogs.pri6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/dialogs/dialogs.pri b/src/gui/dialogs/dialogs.pri
index 12e3a71..365f589 100644
--- a/src/gui/dialogs/dialogs.pri
+++ b/src/gui/dialogs/dialogs.pri
@@ -109,7 +109,11 @@ SOURCES += \
dialogs/qprintpreviewdialog.cpp
symbian:contains(QT_CONFIG, s60) {
- LIBS += -lCommonDialogs
+ contains(CONFIG, is_using_gnupoc) {
+ LIBS += -lcommondialogs
+ } else {
+ LIBS += -lCommonDialogs
+ }
SOURCES += dialogs/qfiledialog_symbian.cpp \
dialogs/qcolordialog_symbian.cpp
}