diff options
author | con <qtc-committer@nokia.com> | 2010-03-23 18:12:03 +0100 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2010-03-23 18:24:59 +0100 |
commit | 6bd7a5a17d9e7546e61333e685e1bfaa12d26e05 (patch) | |
tree | 237bb2c598accce3acd7ca377dce0d43559f7b83 /src/plugins/cppeditor/cpphoverhandler.cpp | |
parent | 0ca5a5f5a41064911141074aa333ecf7868a8cc3 (diff) | |
download | qt-creator-6bd7a5a17d9e7546e61333e685e1bfaa12d26e05.tar.gz |
Fixes: Tooltips for hover help didn't show up anymore.
Reviewed-by: Thorbjørn
Diffstat (limited to 'src/plugins/cppeditor/cpphoverhandler.cpp')
-rw-r--r-- | src/plugins/cppeditor/cpphoverhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cpphoverhandler.cpp b/src/plugins/cppeditor/cpphoverhandler.cpp index 84ed79a986..1755e925a4 100644 --- a/src/plugins/cppeditor/cpphoverhandler.cpp +++ b/src/plugins/cppeditor/cpphoverhandler.cpp @@ -116,7 +116,7 @@ void CppHoverHandler::showToolTip(TextEditor::ITextEditor *editor, const QPoint return; ICore *core = ICore::instance(); - const int dbgcontext = core->uniqueIDManager()->uniqueIdentifier(Debugger::Constants::C_GDBDEBUGGER); + const int dbgcontext = core->uniqueIDManager()->uniqueIdentifier(Debugger::Constants::C_DEBUGMODE); if (core->hasContext(dbgcontext)) return; |