From: Oswald Buddenhagen Date: Tue, 18 Oct 2011 11:50:38 +0000 (+0200) Subject: Merge branch '2.3' into 2.4 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0164e1bea219fc82cb1482b6c66683f48cda212d;p=qt-creator-jp%2Fqt-creator-jp.git Merge branch '2.3' into 2.4 Conflicts: src/plugins/debugger/commonoptionspage.ui src/plugins/madde/maemoqtversion.cpp src/plugins/projectexplorer/runsettingspropertiespage.ui Change-Id: Ieccda73ddca22f9a2d41351619cb682b06d9bfcf --- 0164e1bea219fc82cb1482b6c66683f48cda212d diff --cc src/plugins/debugger/gdb/gdboptionspage.ui index 187d2285ab,5627bfb9ac..ce69639622 --- a/src/plugins/debugger/gdb/gdboptionspage.ui +++ b/src/plugins/debugger/gdb/gdboptionspage.ui @@@ -146,10 -136,10 +146,10 @@@ on slow machines. In this case, the val - + - <html><head/><body><p>Selecting this enables reverse debugging.</p><.p><b>Note:</b>This feature is very slow and unstable on the GDB side. It exhibits unpredictable behaviour when going backwards over system calls and is very likely to destroy your debugging session.</p><body></html> + <html><head/><body><p>Selecting this enables reverse debugging.</p><.p><b>Note:</b> This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session.</p><body></html> Enable reverse debugging diff --cc src/plugins/madde/maemoqtversion.cpp index f7b7a34116,132c0c7a2e..9bcce33d05 --- a/src/plugins/madde/maemoqtversion.cpp +++ b/src/plugins/madde/maemoqtversion.cpp @@@ -154,12 -153,12 +154,12 @@@ QSet MaemoQtVersion::supported QString MaemoQtVersion::description() const { - if (m_osType == LinuxDeviceConfiguration::Maemo5OsType) + if (m_osType == QLatin1String(Maemo5OsType)) return QCoreApplication::translate("QtVersion", "Maemo", "Qt Version is meant for Maemo5"); - else if (m_osType == LinuxDeviceConfiguration::HarmattanOsType) + else if (m_osType == QLatin1String(HarmattanOsType)) return QCoreApplication::translate("QtVersion", "Harmattan ", "Qt Version is meant for Harmattan"); - else if (m_osType == LinuxDeviceConfiguration::MeeGoOsType) - return QCoreApplication::translate("QtVersion", "Meego", "Qt Version is meant for MeeGo"); + else if (m_osType == QLatin1String(MeeGoOsType)) - return QCoreApplication::translate("QtVersion", "Meego", "Qt Version is meant for Meego"); ++ return QCoreApplication::translate("QtVersion", "MeeGo", "Qt Version is meant for MeeGo"); return QString(); }