diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-05-28 22:22:01 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-05-28 22:22:01 (GMT) |
commit | 890ea9c9cf35e4b3f7d9ad08bd6cba76b42f407e (patch) | |
tree | 3035a578faf4828af08224525b710df5318271ac /src/winmain | |
parent | 866813b6779a27e974c30d1023a5d734fa0318c9 (diff) | |
download | Qt-890ea9c9cf35e4b3f7d9ad08bd6cba76b42f407e.zip Qt-890ea9c9cf35e4b3f7d9ad08bd6cba76b42f407e.tar.gz Qt-890ea9c9cf35e4b3f7d9ad08bd6cba76b42f407e.tar.bz2 |
Fixed WinCE compile, perhaps.
Fix obvious typo: frosmUtf16 -> fromUtf16
Diffstat (limited to 'src/winmain')
-rw-r--r-- | src/winmain/qtmain_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/winmain/qtmain_win.cpp b/src/winmain/qtmain_win.cpp index b83b324..e5b3259 100644 --- a/src/winmain/qtmain_win.cpp +++ b/src/winmain/qtmain_win.cpp @@ -110,7 +110,7 @@ int APIENTRY WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR /*cmdPara #if defined(Q_OS_WINCE) TCHAR uniqueAppID[256]; GetModuleFileName(0, uniqueAppID, 255); - QString uid = QString::frosmUtf16((const unsigned short *)uniqueAppID).toLower().replace(QLatin1Char('\\'), QLatin1Char('_')); + QString uid = QString::fromUtf16((const unsigned short *)uniqueAppID).toLower().replace(QLatin1Char('\\'), QLatin1Char('_')); // If there exists an other instance of this application // it will be the owner of a mutex with the unique ID. |