- 26 Feb, 2015 23 commits
-
-
Friedemann Kleint authored
Change-Id: I70ca6773e0f6aa6d80a441f8920d7f5d2418e1bf Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Christian Stenger authored
Change-Id: I41ff4508ae609f481a5a20e4b398e106f2d3093d Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: Ia8971dbc9be18575a1b22d46dac5bb8c18c63c7a Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Christian Stenger authored
Introduced with 8b9456e4 Change-Id: I19dbe1e8f90fb81ea51b8017306e4acd7c16b3b5 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
hjk authored
This basically makes the Context parameter optional and default to C_GLOBAL. Less noise on the user side. Change-Id: Idaf1b83eabaf912450ab20bd5a8b613844bf69a2 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Tobias Hunger authored
Task-number: QTCREATORBUG-13955 Change-Id: I9961e981864f7dc261c2028fd3b80a36647a9a00 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
hjk authored
The previous display as 0, or 0x0...0e (LLDB on Linux) was less useful. Change-Id: I820ea5ef427b65633471c7c62e44851fcfd637cd Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Friedemann Kleint authored
Change-Id: I1e7dd34ba5a51fb0b34d137dc03add4457b32ed1 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Orgad Shaneh authored
Change-Id: I5fb762cd767c31673f4dba6044db9f135e71102b Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
hjk authored
Change-Id: I34e22eee1f0cfaa1f248d814754b14f6004e4fce Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Nikita Baryshnikov authored
Change-Id: I7ae2e7ab8c19270991083a8fc24002549e7f53a3 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Orgad Shaneh authored
When a bulk of compiler warnings is handled, each Task add to the issues pane transforms all the open documents to fixed form, which is very expansive. Change-Id: I3fe77d711fa881e622bd79cfe65058f9ce36d1ff Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Friedemann Kleint authored
Change-Id: Ibfe20bc7156e14e33fd0448586f5cc625494e008 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Christian Kandeler authored
The code assumed that the items in the combobox correspond to the ones in the m_actions array. This is no longer true, as we now group the combox contents. Change-Id: I97500970fbcda9ac8b5e530dd487f388cc13a5e2 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
template<typename T> struct QList { struct iterator { T *operator->() { return &t; } T t; }; static iterator begin() { return iterator(); } }; struct Foo { int bar; }; void fun() { auto a = QList<Foo>::begin(); a. // crash } Change-Id: I373c493b2eefc9566ec13165285c33d474a3b440 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Przemyslaw Gorszkowski authored
Fixed case: template<class T> struct List { struct iterator { T *operator->() { return &t; } T &operator*() { return t; } T t; }; iterator begin() { return iterator(); } }; struct Foo { int bar; }; void func() { List<Foo> list; auto a = list.begin(); (*a).; // code completion doesn't work a->; // code completion does not work } Task-number: QTCREATORBUG-13799 Change-Id: I38e4bfb2f5d728c0b24b0f18b3d78793e90d633b Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
hjk authored
... and default to C_GLOBAL. A rather common case. Similar for ActionContainer::addSeparator(). Change-Id: I7f9ba573af201c0a472132d5a494ad17cc4175b7 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
hjk authored
Change-Id: I59784fbb304882f88538800c4094b8680cb379f8 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: If9c4d1ae8b05a5dae7d6a1a7534e49d1966dd493 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: Ifeb842ece3f357a26e92edcb5f3c857ca9da5b42 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Triggered with the QGraphicsPolygonItem dumper on Linux. Change-Id: I1374ca308c732eb5c25da959d8b499515ed72e66 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Christian Stenger authored
Change-Id: I6cdfb989be46dfad0cbe276ef7c5b067b80260d0 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Change-Id: I42c7ce8e413c850e05b02f5d6fe1b83376436c65 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 25 Feb, 2015 17 commits
-
-
Nikita Baryshnikov authored
Change-Id: Ifdb4cab0cb5cc3ff1505c3d6f46cc5c565b1affb Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Christian Kandeler authored
Having the external tool flavors mixed in among the normal ones makes the tool box look cluttered and is bound to confuse users. So we now group the tools, with the mainstream use case coming first. Change-Id: I200b45550d7b1d1f2a565c2e37979fc195f5a12f Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: I2485aff4f1317a0bf194455969757da497c7e404 Task-number: QTCREATORBUG-14024 Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: I5d002737937593f53f2b64a5eee1cc2fd42d803f Task-number: QTCREATORBUG-14023 Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: Ib2748f1cdd5de4bf11f0eab03bd4c6a683580a9e Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Nikita Baryshnikov authored
Change-Id: Ic0c8c1bdb39b676c7e4b0c234614741b402ff966 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Eike Ziller authored
If we have "*.h" glob pattern with same weight in c-hdr and c++hdr, it also opens the files and checks magic matchers (for _all_ mime types, but that's another issue). Change-Id: I5dde180b3392d3a11354dce61fa577345c97b295 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Przemyslaw Gorszkowski authored
Change-Id: I6989cd0e62e9587824737b756a37607dfdcf5ebf Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Przemyslaw Gorszkowski authored
Fixed case: template<class T> struct List { struct iterator { T *operator->() { return &t; } T t; }; iterator begin() { return iterator(); } }; struct Foo { int bar; }; void func() { List<Foo> list; list.begin()->; // code completion doesn't work } Task-number: QTCREATORBUG-13799 Change-Id: I65e8d3092bbc9b01a5dbee241c24d95dd03fc670 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Przemyslaw Gorszkowski authored
Fixed case: template<class T> struct List { struct iterator { T &operator*() { return t; } T t; }; iterator begin() { return iterator(); } }; struct Foo { int bar; }; void func() { List<Foo> list; (*list.begin()).; // code completion doesn't work } Task-number: QTCREATORBUG-13799 Change-Id: Ia3f5c1631c2f6a25d7fb1186b4ef506354ed22be Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Eike Ziller authored
Change-Id: If669985f8ef852c31ecbaae76c533c7286e5a294 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Eike Ziller authored
Change-Id: I6c408a7f8cf367038140c9d35d7dea8f7e0cd628 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com>
-
Przemyslaw Gorszkowski authored
Added support for resolving case: enum E { val1, val2 = val1, // val2-4 are not resolved val3, val4 }; Task-number: QTCREATORBUG-13932 Change-Id: I122c5eb0b0397d6c02bc3db0a5c1ea1c28c5c6e7 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: I93416ba203b543dd307f1b7db84c8c481aab1ede Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Daniel Teske authored
The OS X linker makes using dynamic_casts across shared object boundaries fail, so do all casting in the projectexplorer library and provide functions to do it. Task-number: QTCREATORBUG-13864 Change-Id: I0e13c0986f8342d83c3b838ffdd2dd7b8312b13c Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
hjk authored
... to running process. Pretty much the same setup as for the terminal now, except that we are stopped in the end. Change-Id: I02c5bf52971dc97fd6393ee67349c9070dc08697 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: I1af77688172d139cca105ac20086a3b7c5f32df6 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-