equal
deleted
inserted
replaced
26 |
26 |
27 ///////////////////////////////////////////////////////////////////////////////////////////////////////// |
27 ///////////////////////////////////////////////////////////////////////////////////////////////////////// |
28 |
28 |
29 #ifdef Q_OS_SYMBIAN |
29 #ifdef Q_OS_SYMBIAN |
30 |
30 |
|
31 #include <qsysteminfo.h> |
|
32 #include <xqappmgr.h> |
|
33 |
31 #include <e32const.h> |
34 #include <e32const.h> |
32 #include <xqappmgr.h> |
|
33 #include <eikenv.h> |
35 #include <eikenv.h> |
34 #include <zipfile.h> |
36 #include <zipfile.h> |
35 |
37 |
36 void LoadFileFromZipL(const TDesC& aZipName, const TDesC& aFileName, QString& desBuffer) |
38 void LoadFileFromZipL(const TDesC& aZipName, const TDesC& aFileName, QString& desBuffer) |
37 { |
39 { |
247 Q_UNUSED(appUid); |
249 Q_UNUSED(appUid); |
248 #endif |
250 #endif |
249 return 0; |
251 return 0; |
250 } |
252 } |
251 |
253 |
|
254 bool HelpUtils::suppportFeatureID(int featureID) |
|
255 { |
|
256 #ifdef Q_OS_SYMBIAN |
|
257 if(featureID == -1) |
|
258 { |
|
259 return true; |
|
260 } |
|
261 QtMobility::QSystemInfo sysInfo; |
|
262 return sysInfo.hasFeatureSupported((QtMobility::QSystemInfo::Feature)featureID); |
|
263 #else |
|
264 Q_UNUSED(featureID); |
|
265 return true; |
|
266 #endif |
|
267 } |
|
268 |
252 Qt::Orientation HelpUtils::defaultOrientation() |
269 Qt::Orientation HelpUtils::defaultOrientation() |
253 { |
270 { |
254 return Qt::Vertical; |
271 return Qt::Vertical; |
255 } |
272 } |
256 |
273 |