Changeset 596 for trunk/tools
- Timestamp:
- Feb 23, 2010, 3:37:44 PM (15 years ago)
- Location:
- trunk/tools/linguist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/linguist/lrelease/lrelease.pro
r561 r596 11 11 $$QT_SOURCE_TREE/src/corelib/io/qsettings.cpp 12 12 win32:SOURCES += $$QT_SOURCE_TREE/src/corelib/io/qsettings_win.cpp 13 13 14 macx:SOURCES += $$QT_SOURCE_TREE/src/corelib/io/qsettings_mac.cpp 14 15 … … 18 19 19 20 win32:LIBS += -ladvapi32 # for qsettings_win.cpp 21 20 22 21 23 target.path=$$[QT_INSTALL_BINS] -
trunk/tools/linguist/shared/profileevaluator.cpp
r561 r596 58 58 #include <QtCore/QTextStream> 59 59 60 #if def Q_OS_UNIX60 #if 61 61 #include <unistd.h> 62 62 #include <sys/utsname.h> 63 #el se63 #el 64 64 #include <Windows.h> 65 65 66 #endif 66 67 #include <stdio.h> … … 112 113 Q_ASSERT(!((flags & Option::FixPathToLocalSeparators) && (flags & Option::FixPathToTargetSeparators))); 113 114 if (flags & Option::FixPathToLocalSeparators) { 114 #if defined(Q_OS_WIN32) 115 #if defined(Q_OS_WIN32) 115 116 string = string.replace(QLatin1Char('/'), QLatin1Char('\\')); 116 117 #else … … 2334 2335 } 2335 2336 } 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2336 2349 #elif defined(Q_OS_UNIX) 2337 2350 struct utsname name;
Note:
See TracChangeset
for help on using the changeset viewer.