diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 5aca5dc1668083b387b063f62933a6f504921b7b..4897b584092a680c2dc918ecf0b830faa04a10f7 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -843,7 +843,7 @@ DOCSET_FEEDNAME = "Qt Creator API" # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. -DOCSET_BUNDLE_ID = com.qtsoftware.qt-creator +DOCSET_BUNDLE_ID = com.nokia.qt-creator # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the diff --git a/src/plugins/cpptools/cppfindreferences.cpp b/src/plugins/cpptools/cppfindreferences.cpp index 9fdc6f883ca7f82b670be28b19ca0d61d68ccb5c..3486641558b20c67c67b9729d0a446d749da6922 100644 --- a/src/plugins/cpptools/cppfindreferences.cpp +++ b/src/plugins/cpptools/cppfindreferences.cpp @@ -23,7 +23,7 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://www.qtsoftware.com/contact. +** contact the sales department at http://qt.nokia.com/contact. ** **************************************************************************/ diff --git a/src/plugins/cpptools/cppfindreferences.h b/src/plugins/cpptools/cppfindreferences.h index 61ba876546fd9d3320cb9da2ad3d327f51dd7d82..2156a1fa6e63e91cb9b88b34f38aa5ecf70f1a9a 100644 --- a/src/plugins/cpptools/cppfindreferences.h +++ b/src/plugins/cpptools/cppfindreferences.h @@ -23,7 +23,7 @@ ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://www.qtsoftware.com/contact. +** contact the sales department at http://qt.nokia.com/contact. ** **************************************************************************/ diff --git a/src/plugins/debugger/cdb/cdbdebugengine.cpp b/src/plugins/debugger/cdb/cdbdebugengine.cpp index 08c552dab8b6e2ba6e99145ef79c1473da600669..b538b7fe67578706753db8da04fe9736c42b154f 100644 --- a/src/plugins/debugger/cdb/cdbdebugengine.cpp +++ b/src/plugins/debugger/cdb/cdbdebugengine.cpp @@ -1588,6 +1588,8 @@ QList<Symbol> CdbDebugEngine::moduleSymbols(const QString &moduleName) void CdbDebugEngine::reloadRegisters() { + if (state() != InferiorStopped) + return; const int intBase = 10; if (debugCDB) qDebug() << Q_FUNC_INFO << intBase; diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 7a2c00b12def6ce5b6117e5572d797d02af16f03..18c770cb92ab067e6e195fbd3ff911489101b3ec 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -2568,6 +2568,8 @@ void GdbEngine::handleStackListThreads(const GdbResponse &response) void GdbEngine::reloadRegisters() { + if (state() != InferiorStopped) + return; if (!m_registerNamesListed) { postCommand(_("-data-list-register-names"), CB(handleRegisterListNames)); m_registerNamesListed = true;