- 17 Jul, 2013 1 commit
-
-
Orgad Shaneh authored
Change-Id: I1309db70e98d678e150388c76ce665e988fdf081 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 16 Jul, 2013 1 commit
-
-
Nikolai Kosjar authored
...in order to better tell apart the type related functions isScope()/asScope() and the functions dealing with enclosing scopes: * scope() --> enclosingScope() * setScope() --> setEnclosingScope() * resetScope() --> resetEnclosingScope() Change-Id: Id743a7d1b6a1a1a0ffcd8568cbd8ebbdfc16eaa1 Reviewed-by:
Fawzi Mohamed <fawzi.mohamed@digia.com>
-
- 08 Jul, 2013 1 commit
-
-
hjk authored
Change-Id: Iabc1330633e5568b7c94059d4286c93adfecb1a2 Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
- 06 May, 2013 1 commit
-
-
Orgad Shaneh authored
Mostly 3 leading spaces converted to 4 A few other indentation issues Change-Id: Ib0db5925cac4d2999faf5699cd570884cbcd4863 Reviewed-by:
hjk <hjk121@nokiamail.com>
-
- 03 Apr, 2013 1 commit
-
-
Oswald Buddenhagen authored
... and adjust INCLUDEPATH accordingly. while i'm at messing with include statements, also re-order the include blocks according to policy and sort them within bigger blocks. Change-Id: I7762abfd7c4ecf59432b99db2f424e4fa25733a5 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 15 Mar, 2013 1 commit
-
-
Erik Verbruggen authored
argumentCount is a more expensive function, so try to call it only once, esp. in loops. Change-Id: I6f0d420352743ec444487ce3f506ef28e5282d1e Reviewed-by:
Nikolai Kosjar <nikolai.kosjar@digia.com>
-
- 04 Feb, 2013 1 commit
-
-
hjk authored
Change-Id: I1cdb193ac4a4a3ad9005c4445cd38406412cb058 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- 30 Jan, 2013 1 commit
-
-
Przemyslaw Gorszkowski authored
It works for full specialization. Instantiate of the partial specialization has to be implemented(finding appropriate partial specialization-on going) Added unit test. Change-Id: I8ef5ea963e7c665e0d67d390b3a833486773dab0 Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
- 29 Jan, 2013 1 commit
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- 08 Jan, 2013 1 commit
-
-
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>
-
- 04 Dec, 2012 1 commit
-
-
Orgad Shaneh authored
Change-Id: I1cfb413b7e88e91e9c4719a8a7b81c752c40767e Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Erik Verbruggen <erik.verbruggen@digia.com>
-
- 05 Oct, 2012 1 commit
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- 02 Oct, 2012 1 commit
-
-
Przemyslaw Gorszkowski authored
Problem was with nested template type(in this case shared_ptr<T> is nested template type) Task-number: QTCREATORBUG-6784 Change-Id: I8ea9203f2b1fbde73d9ac4e6c8cdeb2b6e0afcef Reviewed-by:
David Schulz <david.schulz@digia.com>
-
- 24 Aug, 2012 2 commits
-
-
hjk authored
Change-Id: Ia2aaf91c71e8406944085c5137b67317331cc898 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
hjk authored
While a "real" C++ type rarely contains parantheses or other characters that are "special" for a regexp, gdb happily sprinkles in things like "(anonymous namespace)::". Killing Creator while trying to beautify such a name is inaccpetable. This should be followed up by patches handling the known problematic cases properly. Change-Id: I8cc8509f1d7df0a8780876cdba556e1cf7ec4a95 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- 19 Jul, 2012 1 commit
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- 30 Apr, 2012 1 commit
-
-
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>
-
- 15 Feb, 2012 1 commit
-
-
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>
-
- 26 Jan, 2012 1 commit
-
-
hjk authored
Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- 03 Nov, 2011 1 commit
-
-
hjk authored
Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- 31 Oct, 2011 1 commit
-
-
Christian Kamm authored
Constructors would not get the correct name before. Now rewriting the function's name is not done by going through the 'rewrite type' func- tionality but rather by minimizing the symbol's name directly. Task-number: QTCREATORBUG-6223 Change-Id: I3c25e414337937f5dd0f54570c899ca2ca21d2ef Reviewed-by:
Leandro T. C. Melo <leandro.melo@nokia.com>
-
- 25 Oct, 2011 1 commit
-
-
Christian Kamm authored
Change-Id: I35266b69d1cc433c4d9176cc849efd03ea1cc1cd Reviewed-by:
Roberto Raggi <roberto.raggi@nokia.com>
-
- 08 Aug, 2011 1 commit
-
-
Christian Kamm authored
Change-Id: I633dbc77557fc2b6563888103350612a262536ee Reviewed-on: http://codereview.qt.nokia.com/2731Reviewed-by:
Leandro T. C. Melo <leandro.melo@nokia.com>
-
- 06 May, 2011 1 commit
-
-
Tobias Hunger authored
Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
-
- 13 Apr, 2011 1 commit
-
-
hjk authored
-
- 12 Jan, 2011 2 commits
- 17 Dec, 2010 1 commit
-
-
con authored
-
- 25 Nov, 2010 1 commit
-
-
Friedemann Kleint authored
Make available for log simplification, etc. Add autotest, fix broken std::set and MSVC. Rubber-stamped-by:
Christian Kamm <christian.d.kamm@nokia.com>
-
- 08 Oct, 2010 1 commit
-
-
Erik Verbruggen authored
-
- 02 Sep, 2010 1 commit
-
-
Roberto Raggi authored
-
- 11 Aug, 2010 1 commit
-
-
Roberto Raggi authored
-
- 05 Aug, 2010 1 commit
-
-
Roberto Raggi authored
-
- 23 Jul, 2010 1 commit
-
-
Bill King authored
-
- 20 Jul, 2010 3 commits
-
-
Roberto Raggi authored
-
Roberto Raggi authored
Revert "Revert "Try to fix the type rewriter."" This reverts commit c9bc1e7c.
-
Roberto Raggi authored
This reverts commit 33b19f02.
-
- 19 Jul, 2010 2 commits
-
-
Roberto Raggi authored
-
Roberto Raggi authored
-
- 16 Jul, 2010 1 commit
-
-
Roberto Raggi authored
Done-with: Erik Verbruggen
-