- 19 Jan, 2016 34 commits
-
-
Tobias Hunger authored
* Update files in src/plugins Change-Id: Ia5d77fad7d19d4bb3498e78661982f68729adb22 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Tobias Hunger authored
* Update files in src/share* and src/tools Change-Id: I78aa5d4a1d76212964e467de7676c1fcb2b777d6 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Alessandro Portale authored
Change-Id: Iddbf6224a30d154af7b7216be13e795ae41f3ccd Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
-
Tobias Hunger authored
* Make sure all scripts come with a license * Update the license in the scripts * Add scripts to help with license changes Change-Id: I38a25aa1287ee8a75e0f0307d1b30320d781ad1f Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Eike Ziller authored
Conflicts: src/plugins/clangcodemodel/clangassistproposalmodel.cpp src/plugins/clangcodemodel/clangassistproposalmodel.h Change-Id: Iba30d2f4d95fa0f551afe58890d15f5835dfb715
-
Tobias Hunger authored
Remove "kind" as that is no longer necessary (even though it is still handled if that is in the wizard). Change-Id: I3e56d5e0d936b622dae5091950427f9b2db60695 Reviewed-by:
Niels Weber <niels.weber@theqtcompany.com> Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Tobias Hunger authored
Use that information to decide whether the wizard is a File or ProjectWizard Change-Id: Ie630e206317c7e01e77c811819cb95b360a04e09 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Tobias Hunger authored
All internal paths in Qt Creator are using '/' as path separator. Make sure to normalize paths set via the SDKtool to that convention. Change-Id: If7ef250d49686a0f60d08516b718eb7c84a059ef Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Friedemann Kleint authored
Fix const-ness of ClangCodeModel::Internal::CompletionChunksToTextConverter::inDesiredTextFormat((). Change-Id: I622b65d7d8fd90d67863282fe85b867acf16b899 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
hjk authored
... using a dummy AnalyzerStartParameters class as intermediate step to remove AnalyzerStartParameters entirely. Change-Id: I85663362e6b4f45d8e13f7928009bca05932eb99 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: I2ba60ac5f56e1c4c401b0e25354608dad3bb73fb Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Tobias Hunger authored
E.g. only show wizards that can create qmake projects when contining after a SUBDIR-project wizard. Change-Id: Ib189b1efa479f5b986fdec8658715245e2f2db40 Reviewed-by:
Niels Weber <niels.weber@theqtcompany.com> Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Friedemann Kleint authored
Display values of _MSC_VER >= 1900 (currently displayed as MSVC 2014) as MSVC2015 and larger values as unknown. Change-Id: Id23b0f9342e6ad6d776bb44743e5e4ce91462c8f Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
hjk authored
LLDB 3.8 on Linux claims non-existent files to be the source of disassembly. Change-Id: I45a47cf5e7faad7ccd6dbb9879c8328fc2496b95 Reviewed-by:
Christian Stenger <christian.stenger@theqtcompany.com>
-
hjk authored
Change-Id: I9f2f0eacf5fca155912eb4417d2ac89afcf64901 Reviewed-by:
Erik Verbruggen <erik.verbruggen@theqtcompany.com>
-
Nikolai Kosjar authored
The extra "::" is showed in the tooltip right to the completion list item, but it was not inserted. Change-Id: I0ad2b816c56b8e3b5ccf0643f2c1a4f2a20b8818 Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com>
-
Nikolai Kosjar authored
E.g. "dynamic_cast<>()" showed up as item. Let CompletionChunksToTextConverter default to plain text format and explicitly request HTML where needed. Change-Id: Iebce85cb888a5bd697ffdce364118b6dc65a435d Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com>
-
Nikolai Kosjar authored
Change-Id: I476916f825ab475f77f918127217dfc33eb4f388 Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com>
-
Nikolai Kosjar authored
The tooltip text right to the completion list item is prepared for rich text (html) interpretation, but the QLabel the text will finally be displayed with has no explicit text format set and thus defaults to auto detection. The auto detection works fine for e.g. "<i>int optionalArg</ i>" but fails for "const Foo&". Task-number: QTCREATORBUG-15630 Change-Id: Ia58d65ee542730e4823c69150d452cdde98112f8 Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com>
-
Nikolai Kosjar authored
1 struct Foo { int member; }; 2 void f(Foo *foo) 3 { 4 foo.<REQUEST COMPLETION> // correct '.' to '->' and provide results 5 } The preferred approach would be to check if "foo" in line 4 is of pointer type, but there is no suitable cursor (only CompoundStmt) at that position since the code is usually not yet parsed and thus invalid. Thus, just run the completion as is. If there are not any results for a dot completion, re-run the completion with "." exchanged by "->". This approach is inherently slower than the preferred approach implemented in the built-in code model. The following rare cases are not handled: 1) Requesting completion after white space: Works: foo.<COMPLETE HERE> Fails: foo. <COMPLETE HERE> 2) Opening a file and requesting completion (ctrl+space) without prior editing. No editing before triggering completion means that no unsaved file is generated on the backend side, which is a requirement for the correction. Task-number: QTCREATORBUG-11581 Change-Id: I6bc8e8594778774ab342755fdb01a8a3e5c52ba0 Reviewed-by:
Marco Bubke <marco.bubke@theqtcompany.com>
-
Tobias Hunger authored
* Update license in documentation files. Stay at FDL, but update URLs as well as license for examples, etc. Change-Id: I5e8cb5a20f0e9d52fba1d937b7c73197d69dd747 Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-
Thomas Hartmann authored
Change-Id: Ife567cfb368092f818c7cf418ede4ab1bca227aa Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Thomas Hartmann authored
Change-Id: Ife567cfb368092f818c7cf418ede4ab1bca227aa Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Thomas Hartmann authored
We should not call updateDirtyNode() for items without a window. This will assert later in consistency checks. Change-Id: Iff3574123a1497206de88d59fcf630ead57ef593 Reviewed-by:
Tim Jenssen <tim.jenssen@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: Ia1957d489b8bf2b42c69f739913b50e52e488a69 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Ulf Hermann authored
Change-Id: Ie8c65c7a692d752bac3b6427f66116282b486576 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Ulf Hermann authored
This is very helpful for dynamic extra compiler support (e.g. uic, flex, ...). Change-Id: I5a49b0b39a0f1fbc7834701d60a68ef441172969 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Eike Ziller authored
The methods are only relevant for documents without a filePath, and there was a mix of different irrelevant implementations present in subclasses. Change-Id: I4f57d306e5ddd913974cfe6ed0b4db062eb907a1 Reviewed-by:
David Schulz <david.schulz@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: I8319366bb84f00dc338dcea81233b69b6a116d66 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Orgad Shaneh authored
Change-Id: I7f61ee40ecb84b594018a04062c702bb36ad4510 Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
Eike Ziller authored
Change-Id: Ide09b5585730fb3dcb4a18718a02a4d8351ef91e Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Eike Ziller authored
Change-Id: I258259da7767087a8319d6a4489aa4d6c3b32c6f Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Eike Ziller authored
Change-Id: I59494d410ec529fd9689c64fea299ada6f6a472b Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Eike Ziller authored
Change-Id: I5a71e72907e96402f3b88aa2a05c333f0bb56030 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Eike Ziller <eike.ziller@theqtcompany.com>
-
- 18 Jan, 2016 6 commits
-
-
hjk authored
This is almost uniformly used everywhere else. Change-Id: I1ef9abb24066b21652aeb994b18ea3e19f48b3c6 Reviewed-by:
Christian Kandeler <christian.kandeler@theqtcompany.com>
-
Christian Kandeler authored
Change-Id: Ib4f62c72bd469eeec084e79a3390e92aeb351b22 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Marc Reilly authored
Change-Id: I9c7c2f085638a9b267ed2fc2df93267d5e9501ea Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-
Christian Kandeler authored
Change-Id: I9890c7d4a86320c835e70e66c523c5a2f7b41421 Reviewed-by:
Michal Klocek <michal.klocek@theqtcompany.com> Reviewed-by:
Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-
Tobias Hunger authored
* Update license of files loaded in debugger * Make sure all files have a license header Change-Id: I612885652bcae0a4b7a88ae5184ef661aee25006 Reviewed-by:
hjk <hjk@theqtcompany.com>
-
Caspar Schutijser authored
Change-Id: I77ec7e06c38a54e753b9b39aebc7d2caaa3c8fc0 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@theqtcompany.com>
-