| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Be smarter about macros available from cl.exe. | Daniel Molkentin | 2009-09-16 | 1 | -6/+0 |
| | | | | | | | | Some macros are defined not by cl.exe purely, but are pretty standard. We add those manually anyway. Also, remove compiler-specific macro definitions from the model manager. They should be provided by the tool chains only. | ||||
| * | Fixed endless looping in include paths in some cases with symlinks | Thorbjørn Lindeijer | 2009-08-28 | 1 | -2/+25 |
| | | | | | Done-with: Christian Kamm <christian.d.kamm@nokia.com> | ||||
| * | Fix crash in include completion with non-canonical include paths | Thorbjørn Lindeijer | 2009-08-20 | 1 | -5/+1 |
| | | | | | | Use QFileInfo::fileName() to get the filename, since that also works when the original path wasn't canonical. | ||||
| * | Added a check for empty filename | Thorbjørn Lindeijer | 2009-08-20 | 1 | -0/+4 |
| | | | | | | | | | No empty entries should be added to the completion list, but it seems like this is what is happening. Maybe this warning will give some more information about the problem. Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com> | ||||
| * | long live the king | hjk | 2009-08-14 | 1 | -1/+1 |
| | | |||||
| * | sessionmanager: replace signal sessionUnloaded() by aboutToUnloadSession() | hjk | 2009-08-13 | 1 | -3/+3 |
| | | | | | | | | | | sessionUnloaded was sometimes emitted when the session manager was in an unsafe state (between delete m_file and m_file = new ...) leading to crashes when slots connected to the signal accessed the sessionmanager again. This patch moves the signal emission before delete m_file. Reviewed-by: dt | ||||
| * | Honor QTCREATOR_NO_CODE_INDEXER, supress include scanning. | Daniel Molkentin | 2009-08-04 | 1 | -9/+11 |
| | | |||||
| * | Do the scanning for include files in the background | Thorbjørn Lindeijer | 2009-07-24 | 1 | -0/+85 |
| | | | | | | | In order to speed up completion for include statements. Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com> | ||||
| * | cppmodelmanager: add __restrict__ to known and ignored 'keywords' | hjk | 2009-07-17 | 1 | -0/+1 |
| | | |||||
| * | Introduced revisions in CPlusPlus::Document. | Roberto Raggi | 2009-07-14 | 1 | -2/+23 |
| | | | | | Reviewed by Thorbjørn Lindeijer | ||||
| * | Moved CheckUndefinedSymbols in libCPlusPlus | Roberto Raggi | 2009-07-13 | 1 | -349/+2 |
| | | |||||
| * | Store the document's revision used to compute the warning/error marks. | Roberto Raggi | 2009-07-10 | 1 | -0/+4 |
| | | |||||
| * | Don't search for undefined types in ambiguous sizeof expressions. | Roberto Raggi | 2009-07-06 | 1 | -0/+8 |
| | | |||||
| * | Look at template-type parameters. | Roberto Raggi | 2009-07-06 | 1 | -0/+8 |
| | | |||||
| * | Fixed mimetype check for Objective-C(++) files. | Erik Verbruggen | 2009-06-29 | 1 | -1/+2 |
| | | |||||
| * | Introduced Document::CheckMode. | Roberto Raggi | 2009-06-26 | 1 | -2/+8 |
| | | |||||
| * | Improved compatibility with the gcc extensions. | Roberto Raggi | 2009-06-18 | 1 | -0/+2 |
| | | |||||
| * | Don't search for undefined symbols in ambiguous typeof expressions. | Roberto Raggi | 2009-06-18 | 1 | -0/+18 |
| | | |||||
| * | Disable the undefined-type check for all the C-cast expressions. | Roberto Raggi | 2009-06-18 | 1 | -20/+15 |
| | | |||||
| * | Don't check for undefined symbols in ambiguous ast nodes. | Roberto Raggi | 2009-06-18 | 1 | -0/+28 |
| | | |||||
| * | Update license headers and sales contact details. | Jason McDonald | 2009-06-17 | 1 | -2/+2 |
| | | | | | Reviewed-by: Trust Me | ||||
| * | Keep the original encoded text around while preprocessing. | Roberto Raggi | 2009-06-15 | 1 | -21/+21 |
| | | |||||
| * | Search in the editor buffers. | Roberto Raggi | 2009-06-10 | 1 | -1/+1 |
| | | |||||
| * | Fixed the warn message. | Roberto Raggi | 2009-06-04 | 1 | -1/+1 |
| | | |||||
| * | Check nested name specifiers. | Roberto Raggi | 2009-06-04 | 1 | -0/+25 |
| | | |||||
| * | Add the type-template parameters. | Roberto Raggi | 2009-06-04 | 1 | -0/+8 |
| | | |||||
| * | Show all the warn messages. | Roberto Raggi | 2009-06-04 | 1 | -1/+1 |
| | | |||||
| * | Warn for undefined types (not finished yet). | Roberto Raggi | 2009-06-04 | 1 | -1/+120 |
| | | |||||
| * | Check for missing Q_OBJECT macro. | Roberto Raggi | 2009-06-03 | 1 | -0/+62 |
| | | |||||
| * | We need a valid name to resolve namespace symbols. | Roberto Raggi | 2009-06-03 | 1 | -1/+1 |
| | | |||||
| * | cleanup | Roberto Raggi | 2009-06-03 | 1 | -2/+2 |
| | | |||||
| * | Warn for undefined namespaces in using namespace directives. | Roberto Raggi | 2009-06-03 | 1 | -7/+32 |
| | | |||||
| * | Run the binding pass | Roberto Raggi | 2009-06-03 | 1 | -0/+5 |
| | | |||||
| * | Warning for undefined base classes. | Roberto Raggi | 2009-06-02 | 1 | -4/+84 |
| | | |||||
| * | Protected modelmanager's snapshot. | Roberto Raggi | 2009-06-02 | 1 | -1/+11 |
| | | |||||
| * | Initial support for semantic searches. | Roberto Raggi | 2009-06-02 | 1 | -0/+1 |
| | | |||||
| * | First step towards dynamic ui completion. Add hooks in cppmodelmanager | dt | 2009-05-12 | 1 | -0/+16 |
| | | | | | | | | | This adds a way for plugins to tell the cppmodel that for certain files, the actual contents come from it, instead of reading from the disk. (For texteditors the cppmodel does that automatically.) Reviewed-By: Roberto Raggi <roberto.raggi@nokia.com> | ||||
| * | Rename "Workbench" to "Qt Creator" | Alessandro Portale | 2009-05-08 | 1 | -1/+1 |
| | | |||||
| * | add missing tr()s, etc., add some //: comments | Oswald Buddenhagen | 2009-04-20 | 1 | -4/+3 |
| | | |||||
| * | Don't process the documents from QtConcurrent threads. | Roberto Raggi | 2009-03-17 | 1 | -5/+4 |
| | | |||||
| * | Parse only c/c++ files. | Roberto Raggi | 2009-03-16 | 1 | -1/+4 |
| | | |||||
| * | Prune the list of the futures. | Roberto Raggi | 2009-03-11 | 1 | -0/+11 |
| | | |||||
| * | Wait the future values. | Roberto Raggi | 2009-03-11 | 1 | -1/+13 |
| | | |||||
| * | Improved the way we merge environments. | Roberto Raggi | 2009-03-09 | 1 | -11/+8 |
| | | |||||
| * | Removed the blockingMap, but continue to parse the collected documents in ↵ | Roberto Raggi | 2009-03-06 | 1 | -21/+7 |
| | | | | | parallel. | ||||
| * | Oops! fixed the #endif. | Roberto Raggi | 2009-03-05 | 1 | -1/+1 |
| | | |||||
| * | Store the actual arguments of the macro expansions. | Roberto Raggi | 2009-03-04 | 1 | -4/+6 |
| | | |||||
| * | Fixes: simplify ProjectExplorerPlugin::instance() access | hjk | 2009-03-04 | 1 | -6/+7 |
| | | |||||
| * | ifdefout the new smart highligher. | Roberto Raggi | 2009-03-03 | 1 | -0/+29 |
| | | |||||
| * | Context-sensitive highlighting. | Roberto Raggi | 2009-03-03 | 1 | -9/+26 |
| | | |||||
