- Jan 29, 2014
-
-
Orgad Shaneh authored
For a start, it's a single flag. Will be extended. Also change the default for includeRemotes to false (most callers pass false) Change-Id: I969f89a06b85a42c134c0232d2947d58fe19ea0d Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jan 08, 2014
-
-
Robert Loehning authored
Change-Id: Ib5423fdd064e4546f848c0b640b0ed0514c26d3a Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Nov 08, 2013
-
-
Petar Perisin authored
Direct push after fixup is really useful, especially on gerrit, because it allows easy fixing and direct pushing commits under HEAD. Change-Id: I83980e451c9ae86ac1ac0a55170d6d4141f27d49 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- Oct 05, 2013
-
-
Orgad Shaneh authored
It is input only, and doesn't belong to the panel Also rename it enablePush Change-Id: I9d5e2246ce76854a54b02e69980214dd35a402ee Reviewed-by:
Petar Perisin <petar.perisin@gmail.com>
-
- Oct 02, 2013
-
-
Orgad Shaneh authored
Change-Id: I290d2fb265df29c3cce44fae85af2366ac918e99 Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
Petar Perisin authored
Change-Id: I2809096774882ba1e7e98e2805ad94f03a70dbdc Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- Sep 30, 2013
-
-
Andre Hartmann authored
Git commit dialog: Added a drop-down menu to the commit button to execute "git push" or open the "Push to Gerrit" dialog directly after a commit or amend. Task-number: QTCREATORBUG-8854 Change-Id: I00ff8f816d1768e0cdaf6929126b55826788e578 Reviewed-by:
Petar Perisin <petar.perisin@gmail.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- Aug 14, 2013
-
-
Orgad Shaneh authored
Change-Id: I3c6a1ff6206b5b412c9ae89eb9b8f5a27dab2e62 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jun 17, 2013
-
-
Orgad Shaneh authored
Change-Id: Icd14c8916dc006874b77aa922b3f1c6746e0549c Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jun 03, 2013
-
-
Orgad Shaneh authored
Change-Id: I61e07b2abe3b1da1b56935bb3ce528a5f571705f Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- May 24, 2013
-
-
Orgad Shaneh authored
And change it to derive TextEditor::SyntaxHighlighter Required for reusing for a BaseTextDocument Change-Id: I034b76e03e447bcc47f11833367f7bba9cc031c1 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- May 06, 2013
-
-
Orgad Shaneh authored
Change-Id: I8cb08b0fcba3ddac7223b39b3762ff71e8d61f8c Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
Mostly 3 leading spaces converted to 4 A few other indentation issues Change-Id: Ib0db5925cac4d2999faf5699cd570884cbcd4863 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- May 04, 2013
-
-
Orgad Shaneh authored
* Enable display of local-only commits * Enable specifying a top commit Change-Id: I0688ba9ac670f709d2044ae2b7bff081fd86c860 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
Change-Id: Ia2584ff975ed0db614dc878a70ce4adbd5c3ba67 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Apr 29, 2013
-
-
Orgad Shaneh authored
Fixes the following pattern: Subject # comment Another line - considered as subject Change-Id: I708521efde886c6f5be748795251ce0aafc8f590 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
Task-number: QTCREATORBUG-5874 Change-Id: I287a7fbd2d1a3c39983d7a9ac820b190250a6484 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Apr 05, 2013
-
-
Friedemann Kleint authored
Ran script to remove inludes on a trial-and-error basis and manually corrected it. Change-Id: Ib2afbc530760684db96888b927c5153b29fe24aa Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jan 29, 2013
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 18, 2013
-
-
Orgad Shaneh authored
Change-Id: I105057202091f4b90f7f50eefb3506ee56d4bc1b Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jan 08, 2013
-
-
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>
-
- Jan 07, 2013
-
-
Orgad Shaneh authored
It belongs there Change-Id: I4b4cdacf32b0eab299d4b2d5258cd4d91a759907 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Dec 30, 2012
-
-
Orgad Shaneh authored
Change-Id: Icea74641516292b130784d2d7d48bd05254480df Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Jul 19, 2012
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- Jun 04, 2012
-
-
Orgad Shaneh authored
Change-Id: I91dab02af501527489bf6268fe088bc8095bb321 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- May 03, 2012
-
-
hjk authored
Change-Id: I658412c18d5ccfe978ec444451c6417ffb18d71c Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Apr 30, 2012
-
-
Bradley T. Hughes authored
Commit 75a0c7f9b52cde47f20fdc1b89e1264d60350848 in qt5/qtbase changed some QRegExp methods to be non-const (they were previously const). This change makes Qt Creator compile again. Change-Id: Ibc98c678126c3b3189df7fcc043463b940951445 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com> Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Mar 14, 2012
-
-
Orgad Shaneh authored
Change-Id: I88cfb7839b41467e3f6b25bea329eb15765e440e Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- Feb 15, 2012
-
-
Erik Verbruggen authored
Getting the #include directives ready for Qt5. This includes the new-project wizards. Change-Id: Ia9261f1e8faec06b9285b694d2b7e9a095978d2b Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jan 26, 2012
-
-
hjk authored
Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jan 13, 2012
-
-
Tobias Hunger authored
or even with QTC_CHECKs. Change-Id: I6df67f088bb2f944f0a1abd751fdb192db2be298 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 23, 2011
-
-
Hugues Delorme authored
SubmitEditorWidget::canSubmit() now return false if the description field is empty. This avoids dummy code duplication in VCS plugins. Change-Id: I11e4928e8eed432ccee6fa1f3516f0179a54625c Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com> Reviewed-by:
Bill King <bill.king@nokia.com>
-
- Nov 03, 2011
-
-
hjk authored
Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- May 06, 2011
-
-
Tobias Hunger authored
Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
-
- Apr 13, 2011
-
-
hjk authored
-
- Jan 12, 2011
- Dec 17, 2010
-
-
con authored
-
- Nov 23, 2010
-
-
Tobias Hunger authored
Only enable submit button in the git submit editor when a non-empty desciption of the patch is available. Git rejects empty commit messages and old versions fail without even giving an error Qt Creator can detect, so this should make commiting a bit more save. Task-number: QTCREATORBUG-2410
-