Changeset 769 for trunk/src/corelib/kernel/qcoreapplication.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/corelib/kernel/qcoreapplication.cpp
r651 r769 68 68 # include <exception> 69 69 # include <f32file.h> 70 70 71 # include "qeventdispatcher_symbian_p.h" 71 72 # include "private/qcore_symbian_p.h" … … 597 598 extern void qt_core_eval_init(uint); 598 599 qt_core_eval_init(d->application_type); 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 599 621 #endif 600 622 … … 2250 2272 TInt err = finder.FindByDir(tempPathPtr, tempPathPtr); 2251 2273 while (err == KErrNone) { 2252 QString foundDir = QString::fromUtf16(finder.File().Ptr(), finder.File().Length()); 2274 QString foundDir(reinterpret_cast<const QChar *>(finder.File().Ptr()), 2275 finder.File().Length()); 2253 2276 foundDir = QDir(foundDir).canonicalPath(); 2254 2277 if (!app_libpaths->contains(foundDir))
Note:
See TracChangeset
for help on using the changeset viewer.