Changeset 424
- Timestamp:
- Dec 14, 2009, 8:22:14 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.cmd
r418 r424 612 612 /* settings */ 613 613 if (G.QT_INSTALL_SETTINGS == "") then 614 G.QT_INSTALL_SETTINGS = "$(ETC)\ qt"614 G.QT_INSTALL_SETTINGS = "$(ETC)\xdg" 615 615 /* examples */ 616 616 if (G.QT_INSTALL_EXAMPLES == "") then … … 731 731 '[Paths]'G.EOL||, 732 732 'Prefix = ..'G.EOL||, 733 'Settings = $(ETC)/ qt'G.EOL733 'Settings = $(ETC)/xdg'G.EOL 734 734 call charout qt_conf 735 735 -
trunk/doc/src/qt-conf.qdoc
r357 r424 86 86 (or the application executable if Qt is built as a static library) 87 87 88 \o \c %ETC%\qt \qtsys.conf88 \o \c %ETC%\qtsys.conf 89 89 90 90 \endlist -
trunk/src/corelib/global/qlibraryinfo.cpp
r404 r424 175 175 qtconfig = QDir::rootPath(); 176 176 qtconfig = QDir::fromNativeSeparators(qtconfig) + 177 QLatin1String("/qt /qtsys.conf");177 QLatin1String("/qtsys.conf"); 178 178 qtconfig = QDir::cleanPath(qtconfig); 179 179 } … … 347 347 while((rep = reg_var.indexIn(ret)) != -1) { 348 348 ret.replace(rep, reg_var.matchedLength(), 349 Q String::fromLocal8Bit(qgetenv(ret.mid(rep + 2,349 QFile::decodeName(qgetenv(ret.mid(rep + 2, 350 350 reg_var.matchedLength() - 3).toLatin1().constData()).constData())); 351 351 } … … 474 474 while((rep = reg_var.indexIn(ret)) != -1) { 475 475 ret.replace(rep, reg_var.matchedLength(), 476 Q String::fromLocal8Bit(qgetenv(ret.mid(rep + 2,476 QFile::decodeName(qgetenv(ret.mid(rep + 2, 477 477 reg_var.matchedLength() - 3).toLatin1().constData()).constData())); 478 478 }
Note:
See TracChangeset
for help on using the changeset viewer.