- 26 Feb, 2015 15 commits
-
-
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>
-
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 24 commits
-
-
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>
-
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
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>
-
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>
-
Orgad Shaneh authored
Callgrind shows that movePosition is very expansive. Change-Id: I84fbb59eb10b97e8222b91604b29a420179cf3e2 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Nikita Baryshnikov authored
and remove unused variable Change-Id: I89c042ed834e978a97623a0544b4a6d754d29bc3 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikita Baryshnikov authored
Change-Id: Ic62012104503956b16468718299a24d63594339a Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikita Baryshnikov authored
Change-Id: Ibbe75d5245e565d3f2258275ba20993e90a21467 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikita Baryshnikov authored
Change-Id: Iebb1597898d3c608e91c7f0b3c11ee139fe3f489 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikita Baryshnikov authored
Change-Id: I92cd512bafd8030735c3c51e4c973a2f3b858189 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
hjk authored
Task-number: QTCREATORBUG-14028 Change-Id: I426baf1549d138f4a35d23d5ab814def2125dfbe Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
Jarek Kobus authored
Task-number: QTCREATORBUG-13967 Change-Id: Ie70f861138f1cf4c3f098a363274cb99bcf97c03 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
-
Nikita Baryshnikov authored
Change-Id: Ib43dbddd64bb179f65d25705757682f6a8088af0 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Orgad Shaneh authored
Change-Id: Id19f3d0ffcc1b3c939d57c9cb2c5b0fa7be7203c Reviewed-by:
Nikita Baryshnikov <nib952051@gmail.com> Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Nikolai Kosjar authored
...when offering Qt5 style slot completions. Change-Id: Id23b008601ade3533aea2b6295558ffea178a5da Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikolai Kosjar authored
...and their class names. Change-Id: I41b4705eb572d9d6431a06025e73b0c1621d4bea Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Nikita Baryshnikov authored
Change-Id: Id5aa974e24baf639dd75979193c6bd6f4c86d2b6 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
hjk authored
Change-Id: I7be999999f891a003c940d585762d15a76bf90a1 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
- 24 Feb, 2015 1 commit
-
-
hjk authored
Requiring Qt 5.4 would be nice... Change-Id: Iae2ef187bc4c6a30137448ad60109ed44b130fb4 Reviewed-by:
Daniel Teske <daniel.teske@theqtcompany.com>
-