- 23 Jan, 2015 1 commit
-
-
hjk authored
cca10304 made dumper detection lazier, the bbsetup needs now to be trigger separately. Change-Id: I7f78c5e4b3a6981dbd1c292654a48eac0b5b58e7 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 21 Jan, 2015 2 commits
-
-
Christian Stenger authored
Issue was introduced with 5a5acd66 Change-Id: I30ed199e7471cbb71bd185c6a6e1db223339da75 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Task-number: QTCREATORBUG-13219 Change-Id: I319fe39d696ccc28230d421b1395faf4dd452b03 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
- 19 Jan, 2015 1 commit
-
-
Orgad Shaneh authored
Change-Id: I8f3aeee7c45cffb839bc44109da107ee6b91c1ad Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
- 16 Jan, 2015 3 commits
-
-
hjk authored
Change-Id: I6b4dff0909e87ab727cb8c5b5be6f6c25b687bf0 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: I475a5914f3b65656dc12cf7619bfed34e9fc8b74 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: Iac9aa792c65c8d35b16ea23d9e20d909ef59eec6 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 14 Jan, 2015 3 commits
-
-
hjk authored
Clang 3.5 runs out of memory when trying to optimize tst_Dumpers::dumper_data. So don't optimize. This is a backport of 58c69457 . Change-Id: Ia81aa6e491e132ee04bb51e9d443e836b5a7635a Reviewed-by:
Kevin Funk <kevin.funk@kdab.com> Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Clang 3.5 runs out of memory when trying to optimize tst_Dumpers::dumper_data. So don't optimize. Change-Id: Ic81aa6e491e132ee04bb51e9d443e836b5a7635a Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Przemyslaw Gorszkowski authored
If it is possible lets calculate enum value for the simplest case. Example where it works: enum { enum_val1, // tooltip = "enum_val1 = 0" enum_val2 // tooltip = "enum_val2 = 1" }; enum { enum_val1=10, // tooltip = "enum_val1 = 10" enum_val2 // tooltip = "enum_val2 = 11" }; enum { enum_val1, // tooltip = "enum_val1 = 0" enum_val2=10, // tooltip = "enum_val2 = 10" enum_val3 // tooltip = "enum_val3 = 11" }; Example where it does not work: enum { enum_val1=10+1, // tooltip = "enum_val1 = 10+1" enum_val2 // tooltip = "enum_val2" }; Task-number: QTCREATORBUG-4529 Change-Id: Idd85ed7304018f73f2b068bf1ac28f1abde02f93 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- 13 Jan, 2015 2 commits
-
-
Christian Kandeler authored
Change-Id: I2cae3d3256820f34d6d3bd7a8a9701c68cad1c53 Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: If7f67ffc68ef725554e9ebaf8a8db5a64b7309cb Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com> Reviewed-by:
hjk <hjk@theqtcompany.com>
-
- 12 Jan, 2015 2 commits
-
-
Nikita Baryshnikov authored
Complains on highlighter.cpp:213: error: undefined reference to `Core::MessageManager::write(QString const&, QFlags<Core::MessageManager::PrintToOutputPaneFlag>)' Change-Id: I296a105a8322e8b6ac1ab4a7085500f76acfcdeb Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Orgad Shaneh authored
QTestData converts raw string as Utf8. Change-Id: I201f283ce16732dfc85927fdcc9bb15c230ec16f Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
- 07 Jan, 2015 1 commit
-
-
Maksim Klimov authored
Change-Id: I78db37a91f1770513fcb5192bf45623799e14e34 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
André Hartmann <aha_1980@gmx.de> Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
- 19 Dec, 2014 3 commits
-
-
Christian Kandeler authored
And fix some autotest project file problems uncovered by this. Change-Id: Id2f46aeab31ccfbcffe43bd23af8115c69f57849 Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
Nikolai Kosjar authored
Instead, always write into a unique temporary directory in QDir::tempPath(). Where applicable, read the test source from files instead of first writing the file. Some clean ups in test_codegen*. Change-Id: Id48dc50c6ca16252edfd9fc8a86ba0de9f9be486 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-
Eike Ziller authored
Change-Id: I93a256f18e720edb0bcfc2b409c119abfdcf2a2b Reviewed-by:
Alex Blasche <alexander.blasche@theqtcompany.com>
-
- 18 Dec, 2014 4 commits
-
-
Erik Verbruggen authored
Separate the messy pp-number parsing from the numeric literal parsing. The C/C++ preprocessor makes a grown man cry, but at least we have "proper" literal parsing when we want it, including C++1y binary literals. Next step is digit separators (n3781). Change-Id: Ia069eef454ed5c056f77694a5b8a595d0b76adc4 Reviewed-by:
Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: I9860af4b6aedbd656103bf5def38f1830b1352e1 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
Ulf Hermann authored
Allow models to be created without a parent and provide default implementations for virtual methods. It's actually fine to have all ranges in row 0 and in black by default. Having default implementations makes things easier to test. Change-Id: Ibb842ef295cdcfa13d8ca4be3489906af72e9699 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: If27c51b1189bc0bb0333837c58849bc79b779845 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
- 16 Dec, 2014 1 commit
-
-
Ulf Hermann authored
Change-Id: I964b2f149e237eb25a08600e8dab8968e8bc0cb9 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
- 15 Dec, 2014 2 commits
-
-
Nikita Baryshnikov authored
after 516c0d60 Change-Id: I2d2cdf0c899946f9bb792db2a10c12b03dfef4bc Reviewed-by:
Ulf Hermann <ulf.hermann@theqtcompany.com>
-
Nikolai Kosjar authored
This implements the actual include_next logic and thus completes commit b934cc19 C++: pass #include_next down to CppPreprocessor::tryIncludeFile commmit 140b5029 C++: Highlight argument to gcc's #include_next extension Based on https://gcc.gnu.org/onlinedocs/cpp/Wrapper-Headers.html Task-number: QTCREATORBUG-10225 Change-Id: I7eef7f5ea64a114f6d092304d32b72c55c2ce134 Reviewed-by:
hjk <hjk121@nokiamail.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-
- 12 Dec, 2014 1 commit
-
-
hjk authored
Change-Id: I5d5ed9cfc68af061970b0055b76cb563ca04ee53 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 05 Dec, 2014 1 commit
-
-
Ulf Hermann authored
We'll need to access both of them when building the scene graph. This change also clarifies the dynamics between expanding categories and row heights and offsets. Change-Id: I2e2bf488ad973c95d05f230bf6fff63598f39bf2 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
- 01 Dec, 2014 1 commit
-
-
hjk authored
This triggers errors in LLDB error: main.o Parsing a die that is being parsed die: 0x00001ddf: DW_TAG_subprogram operator void *QMetaObject::Connection::* error: main.o Parsing a die that is being parsed die: 0x000100fa: DW_TAG_subprogram operator QObjectData *QScopedPointer<QObjectData, QScopedPointerDeleter<QObjectData> >::* Change-Id: Iae6a8ca1fbd84c43c7d31b65e017792d1b6a1e0b Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 28 Nov, 2014 3 commits
-
-
hjk authored
There is seemingly still no proper API for that, and the old hack broke. Use a new one. Change-Id: I9e638ca1fbd84c43c7d31b65e017792d1b6a1e0b Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Nikolai Kosjar authored
Task-number: QTCREATORBUG-13422 Change-Id: I3648bf44760fdac4e8e1e79652519136af6032c8 Reviewed-by:
Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-
hjk authored
Change-Id: Iae638ca1fbd84c43c7d31b65e017792d1b6a1e0b Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 27 Nov, 2014 1 commit
-
-
hjk authored
Change-Id: I51a017ced91198bdc4e822cfcc1c45580945a773 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 25 Nov, 2014 1 commit
-
-
hjk authored
Change-Id: Ib6ba0ffb5957a60e700abd9a540bd7bbf5888b2a Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 21 Nov, 2014 5 commits
-
-
hjk authored
Change-Id: I1998f0750c5905a3dc4e83db297edc135cd2a39a Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: Ie56de7a0e59cadd8557f7a2fd00d434470000f3c Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Ulf Hermann authored
We need a general purpose TimelineModel and a specialized QmlProfilerTimelineModel. Change-Id: I2da02d65efa11e160cab5fa9f8a21075beb0e2bf Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: Ibe5e7638eb7f3d88ed02e6de12b81c9b2aba3e7d Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
Ulf Hermann authored
This relieves us of the headaches created by figuring out what should happen if the model manager is changed later. Extension models can be safely created through a factory. Change-Id: I8cf8fd6d639e4e6c9da66351ea44cfc35fd614a5 Reviewed-by:
Kai Koehne <kai.koehne@theqtcompany.com>
-
- 20 Nov, 2014 1 commit
-
-
Christian Stenger authored
Change-Id: I6ea9f4d174170b9e430ea77b2337dfdb9971c13c Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 19 Nov, 2014 1 commit
-
-
Nikolai Kosjar authored
For the semantic info document we do not expand function like macros and because of that certain macro invocations lead to invalid code that we need to handle, e.g.: Q_GLOBAL_STATIC(CppTools::SymbolFinder, symbolFinder) class Foo {}; This change makes parsing Foo in the semantic info document successfully again, which affects highlighting of that class. Change-Id: I389265ac64d3f0b8b8f406d38fa58d78820b14ba Reviewed-by:
Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-