diff options
author | Shane Kearns <shane.kearns@sosco.com> | 2009-09-23 18:30:21 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@sosco.com> | 2009-09-23 18:33:48 (GMT) |
commit | b3f3ab74f07cbadb568a5e8ad4363f1e042ea40c (patch) | |
tree | 42657c61c4dd50c0508089913c7da56020a594e9 /src/plugins/s60/5_0 | |
parent | d2180e2fc3c56d56cd073a896d8449181ca28136 (diff) | |
download | Qt-b3f3ab74f07cbadb568a5e8ad4363f1e042ea40c.zip Qt-b3f3ab74f07cbadb568a5e8ad4363f1e042ea40c.tar.gz Qt-b3f3ab74f07cbadb568a5e8ad4363f1e042ea40c.tar.bz2 |
Fix 3.1 build - move unimplemented RFs API to the S60 plugin
RFs::GetSystemDrive doesn't exist in 3.1 (even though it is in the
symbian documentation). Moved it to a new function in the S60 plugins.
For 3.1, it returns EDriveC, for all other versions the RFs API is used
Task-number: QT-805
Reviewed-by: Iain
Diffstat (limited to 'src/plugins/s60/5_0')
-rw-r--r-- | src/plugins/s60/5_0/5_0.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/s60/5_0/5_0.pro b/src/plugins/s60/5_0/5_0.pro index d7c3cb2..4cdce12 100644 --- a/src/plugins/s60/5_0/5_0.pro +++ b/src/plugins/s60/5_0/5_0.pro @@ -4,11 +4,13 @@ TARGET = qts60plugin_5_0 contains(S60_VERSION, 3.1) { SOURCES += ../src/qlocale_3_1.cpp \ - ../src/qdesktopservices_3_1.cpp + ../src/qdesktopservices_3_1.cpp \ + ../src/qcoreapplication_3_1.cpp } else { SOURCES += ../src/qlocale_3_2.cpp \ - ../src/qdesktopservices_3_2.cpp - LIBS += -ldirectorylocalizer + ../src/qdesktopservices_3_2.cpp \ + ../src/qcoreapplication_3_2.cpp + LIBS += -ldirectorylocalizer -lefsrv INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE } |