summaryrefslogtreecommitdiff
path: root/src/plugins/cppeditor/cpphoverhandler.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* long live the kinghjk2009-08-141-1/+1
|
* Fixed name of local variableThorbjørn Lindeijer2009-07-221-3/+3
|
* Attempt to resolve a help id even when showing a diagnostic errorThorbjørn Lindeijer2009-07-221-19/+28
| | | | | | | | Makes context sensitive help work for valid expressions that happen to be part of a marked diagnostic error. However, for now you still can't get documentation for expressions that don't resolve. Also, context sensitive help now also works for includes where possible.
* Update license headers and sales contact details.Jason McDonald2009-06-171-2/+2
| | | | Reviewed-by: Trust Me
* Fixed crash in the cpp hover handlerThorbjørn Lindeijer2009-06-121-1/+1
| | | | | | | Didn't check whether the lookup actually returned a valid symbol before accessing the name. Reviewed-by: Roberto Raggi
* Corrected name of .config editorThorbjørn Lindeijer2009-06-121-1/+1
|
* Fixed helpId and tooltip for member declarations.Roberto Raggi2009-06-111-5/+4
|
* Don't annoy Windows users with alien dir separatorsAlessandro Portale2009-04-151-1/+1
|
* Fixes: change file license headers to include LGPLhjk2009-02-251-21/+17
|
* Set the resolved symbol (it needs some cleanup).Roberto Raggi2009-02-161-0/+12
|
* Improved the C++ hover handler.Roberto Raggi2009-02-161-45/+101
| | | | Done with: bjorn
* Introduced support for forward class declarations.Roberto Raggi2009-02-161-2/+10
|
* Fixes: Possible crash in buildHelpIdRoberto Raggi2009-02-131-2/+4
|
* Fixes: Check for 0x0 access.Roberto Raggi2009-02-111-0/+3
|
* Revert now unnecessary checks for null-typesThorbjørn Lindeijer2009-02-101-1/+1
| | | | | | | | | | | | | | | | | | | | This reverts commits: c721304a4731a91a9e143a54d2ab3ef89526e05e 885d908ea336de72e7fce2141c1060e425f2af0a a0909989f7d71ee754cdb61202a519cabff25f7c fb4ad59ddbf727f13f29df6bcff80a88e1e1a319 0a9a67cf547701a278f19dbe2b9fb0a70a36cdb8 0d1624d4d1d5ce4e350476fbc86a361fad2ef6b8 d018cfd5cb4aad0101c321fe2fcf9b21598e9590 0504fdd00bce8d9580a52335093b57215f4272da a2fd10fe193dbf8369e43d7df9a59503c8853b2b Conflicts: src/plugins/cpptools/cppcodecompletion.cpp Reviewed-by: Roberto Raggi
* Fixed two crashes with C++ engine handlingThorbjørn Lindeijer2009-02-101-1/+1
| | | | | | These checks are necessary cause of a recent change in the C++ engine. Reviewed-by: Roberto Raggi
* Reimplemented Type::as*Type() using virtual methods.Roberto Raggi2009-02-091-4/+4
|
* Fixed tooltips for enumeratorsThorbjørn Lindeijer2009-02-061-3/+4
| | | | | | The helpId was working but the tooltip text was empty. Reviewed-by: Roberto
* replace ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>() ↵hjk2009-01-201-7/+9
| | | | by Core::ICore::instance()
* Remove #include <extensionsystem/pluginmanager.h> from icore.h, ahjk2009-01-191-1/+5
| | | | forward declaration is sufficient.
* Bump year in licence header.Daniel Molkentin2009-01-131-1/+1
|
* Fixes: - Move help collection also to qtcreator subdir.con2009-01-061-2/+8
|
* Nicer implementation of CPlusPlus::Macro.Roberto Raggi2008-12-221-2/+3
|
* Clean up the C++ hover handler.Roberto Raggi2008-12-181-52/+54
|
* Merge branch '0.9.1-beta'dt2008-12-171-1/+1
|
* Moved the CppHoverHandler to the CppEditor pluginThorbjørn Lindeijer2008-12-161-0/+296
It used to be in CppTools, but since the hover handler only makes sense in the context of the C++ editor, this is a better place.