- Jan 09, 2013
-
-
hjk authored
Task-number: QTCREATORBUG-8446 Change-Id: I79abc7f75779db15bd8700c085b9cd57411bb2e1 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Tobias Hunger authored
Change-Id: Ie12251ec704bdf2260661ed6fed86e67610b3f86 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
Daniel Teske authored
Task-number: QTCREATORBUG-8496 Change-Id: Ie92886fa77ad64ea99a6724b18874537216c7eb7 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Daniel Teske authored
The signal was not emitted if the active bc changed. Change-Id: Ic44d067836466a748498d32375d109088d14762c Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Daniel Teske authored
If the CMakeRunConfiguration environment is based on the bc environment then we need to emit this signal on changing the bc or if the environment of the bc changed. Change-Id: I005dfa06c92b89f5cf8b901c0f5d929fd8e1bf70 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Petar Perisin authored
Added Soft Reset to Reset Dialog Change-Id: Iba5b6a37aef2b89c998c21a3d8ecca1075cbda10 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Thorbjørn Lindeijer authored
Now it will only consider C and C++ files as source files by filtering on mime-type. This seems appropriate for now since it currently only supports C++ projects anyway. Also removed the list of generated files, which was always empty since there is no way to tell the generic project which files are generated. Task-number: QTCREATORBUG-5451 Change-Id: I12209995db4b30643af1d51123813c24d016f44c Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
Orgad Shaneh authored
This changes behavior. Editing a cmake file then building then editing it again will display the warning again. It currently doesn't. Change-Id: I8ecb31956102680e953a40dcb5e95bde819aa652 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
Daniel Teske authored
CMake generates the ui*h file in the directory that corresponds to the CMakeLists.txt. Creator does not have the information whihch CMakeLists.txt file includes the .ui file. This patch adds a crude heuristic that searches for the right CMakeLists.txt. Task-number: QTCREATORBUG-8509 Change-Id: I0f31d9766c6b5988a00ab618026ea052690dd649 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
It only contains a single options "<custom>". Change-Id: Ifad2ea8cabdba6f302de5b2d6d49cb0b042bf4a9 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Mehdi Fekari authored
This allows to directly create a GCCToolChain with no need to subclass/reimplement and register a related GCCToolChainFactory. For some plugins (Qnx, Android), this enables to easily create and set a GCCToolChain for a created Kit and avoid sublass ToolChain and ToolChainFactory. Change-Id: I8a5865dcee6dbe3e20b976943a5cba75d162a962 Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Friedemann Kleint authored
x2, y2 are inner points. Change-Id: Ibbded22dd35da19894ad3678552519691b62e14f Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Debao Zhang authored
Change-Id: Ie670448bf924e02720eae6db33f2a346e8ac0001 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
David Schulz <david.schulz@digia.com>
-
- Jan 08, 2013
-
-
Sergey Shambir authored
Change-Id: I96a68aed65c868a8c57babc501ec746bc27c8781 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
Sergey Shambir authored
Passed ctor param ignored, field set to 0 and than called Change-Id: I34d8be9b11826d21506d8c1b2732e25f64593798 Reviewed-by:
Daniel Teske <daniel.teske@digia.com>
-
hjk authored
Change-Id: If31fe1bce75bef4f4a687c51ef57381f5083814c Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Change-Id: I65c79a5cf226f9ce73ef4cb0ae66387fc1c74112 Reviewed-by:
hjk <qthjk@ovi.com>
-
Friedemann Kleint authored
Change-Id: I31673da5ba85e87c9819059a9e6806b5deecff1e Reviewed-by:
hjk <qthjk@ovi.com>
-
Orgad Shaneh authored
Might be disabled by configuration. Override it. Change-Id: I262c5c34a840811b635b460c7759f4cfbe93ded6 Reviewed-by:
Thorbjørn Lindeijer <bjorn@lindeijer.nl> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Francois Ferrand authored
When a constructor is defined with a single, unnamed argument of a custom type without extra type specifiers (const...), then the constructor was not identified as such. There was an heuristic in case the constructor was in the class definition, but not if the the constructor was defined later. Examples: class Arg; class Other; class Foo { Foo(Arg /*arg*/); // working Foo(const Arg /*arg*/); // working Foo(int /*arg*/); // working Foo(Other /*arg*/) {} // working }; Foo::Foo(Arg /*arg*/) {} // used not to work, fixed Foo::Foo(Arg arg){} // working Foo::Foo(const Arg /*arg*/) {} // working Foo::Foo(int arg) {} // working Change-Id: I741e4ba62672ddc99a837fdcdc27996fba5ae6c7 Reviewed-by:
hjk <qthjk@ovi.com>
-
Christian Kandeler authored
A plugin might be disabled by default for other reasons than being experimental, e.g. because it is not expected to be needed by the average user. This is probably becoming more relevant the more plugins are added, since we want to keep the start-up time reasonable. Change-Id: I87927596d5c78e14793c5e8d6f0548eff6b58d59 Reviewed-by:
hjk <qthjk@ovi.com>
-
Christian Stenger authored
Change-Id: I486caa6d2c141067e2ef098c1d78b8a36761568d Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Christian Kandeler authored
This reverts commit 6f7ce3f4. The workaround turned out to be incomplete and has therefore been superseded. Change-Id: Ic60cd810f72ca833c1725024d2816baf5ce47372 Reviewed-by:
hjk <qthjk@ovi.com>
-
Orgad Shaneh authored
pFlags might be used uninitialized Change-Id: I78b308c9894797ca6258c82cab9d8dffab7e47bb Reviewed-by:
Kai Koehne <kai.koehne@digia.com> Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
David Schulz authored
...when trying to replace some regular expressions that could result in empty search results like ^, $ or \b. Task-number: QTCREATORBUG-8464 Change-Id: I91a304d3609c3ec20437c698d53e6a1819dfb924 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
Orgad Shaneh authored
#!/usr/bin/env ruby Dir.glob('**/*.cpp') { |file| # skip ast (excluding paste, astpath, and canv'ast'imer) next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i s = File.read(file) next if s.include?('qlalr') orig = s.dup s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m| res = $& if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces res else res.gsub!('} else', 'else') res.gsub!(/\n +} *\n/m, "\n") res.gsub(/ *{$/, '') end } s.gsub!(/ *$/, '') File.open(file, 'wb').write(s) if s != orig } Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc Reviewed-by:
hjk <qthjk@ovi.com>
-
Orgad Shaneh authored
Also rename m to model Change-Id: Ibb283dc2d5d0c306cbac9109a7e5fc6481ac86a8 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jan 07, 2013
-
-
Orgad Shaneh authored
It might fail because a particular branch points to an invalid commit. We don't want that to prevent display of all other branches. Change-Id: I8fe427735351fc458c99396dc1f9d77bc948468e Reviewed-by:
Petar Perisin <petar.perisin@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
Change-Id: Id11af855460f301b04afcddedbc8a2af6d2f4bd8 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Erik Verbruggen authored
Change-Id: I0ff6ef8c3e6e8f4a02c2135da30be2f03f82c648 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
Petar Perisin authored
Allow user to handle local changes when switching branches. Task-number: QTCREATORBUG-8417 Change-Id: I62d615aadfbd81c8ae03f3cd292b98773a36e1e7 Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Petar Perisin authored
Added git functions - "Merge" and "Rebase" They are in the "Branches" dialog: - Merge - merge selected branch into current one - Rebase - rebase current branch on selected one Task-number: QTCREATORBUG-8367 Change-Id: I9ed306c64d5d4b7bd1d58730a5e1009f0bd4ec0e Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
Default implementation is between O(n) (for identical models) to O(n*m) (for disjoint models). If sort order is known, this can be reduced to O(n+m), like in Git implementation. Change-Id: I44662a22961311cb882601d20efa9d445f74748b Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
Orgad Shaneh authored
Much cleaner Change-Id: I090e5d04e5afae1023fa58eca1ef416ddc069165 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
It belongs there Change-Id: I4b4cdacf32b0eab299d4b2d5258cd4d91a759907 Reviewed-by:
hjk <qthjk@ovi.com>
-
Christian Kandeler authored
Change-Id: I0ef6e4419596b7cc0f8a574917fec5af94ff8832 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
hjk authored
Change-Id: Iea772405ecb55a2f556a1b50ec3712ed91de3d9d Reviewed-by:
Christiaan Janssen <christiaan.janssen@digia.com>
-
- Jan 04, 2013
-
-
Erik Verbruggen authored
Change-Id: If87cd649267cd3a48973580acab2227ad9d5ac44 Reviewed-by:
hjk <qthjk@ovi.com>
-
hjk authored
Change-Id: I90097e11689fbbb964fc4344a1e3ba60c718a1cf Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
Erik Verbruggen authored
Change-Id: I4dd00dca652c1cb60c952ebc11b3c5f8767d4ecc Reviewed-by:
Thomas Hartmann <Thomas.Hartmann@digia.com>
-