- Apr 22, 2013
-
-
Orgad Shaneh authored
Change-Id: I4521e26e72c85e896e58e4d9d129f92b2d80f869 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Apr 19, 2013
-
-
Eike Ziller authored
It was not possible to simultaneously open two commit editors for different version control systems, also there was no reason to scan all open editors for the submit editor, since the plugins can just remember the editor that they opened. Change-Id: I1bea6ece3cd6faa1ecc0566bdd6f5fb10c816963 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
-
- Apr 04, 2013
-
-
hjk authored
This was mostly used to disambiguate the char * and the QString constructors. Change-Id: Ib6923ef8e8c0e5d514a883e73aa001a1cd9fb534 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Mar 21, 2013
-
-
hjk authored
Change-Id: I21ca57fa6b73887dfc88b31240096b0851d53cae Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Mar 12, 2013
-
-
Friedemann Kleint authored
Change-Id: I75f2040e9b3dd5d9786faf2e829ec808af7f1304 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jan 30, 2013
-
-
Orgad Shaneh authored
Tests included Change-Id: Ibe2f6ece207128f8467b0cbca9dc38f2bcd5ced6 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Orgad Shaneh authored
Change-Id: I43c40585e5ac50369422d78f74240d7249be95ae 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 22, 2013
-
-
Orgad Shaneh authored
* Fix Mercurial pattern * Make fileNameFromDiffSpecification protected again (it was made public for running tests, but they are now run from VCSBaseEditor) * Remove DiffHighlighter::filePattern(). Not used anymore. Change-Id: Ifc99f761f0ab96cc79f1d018e3f3c8cf4603da10 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Jan 18, 2013
-
-
hjk authored
There seems to be still disagreement in the code what the individual parameters are meant for. Change-Id: I9c51e6ee9cc8fd1a55d202b8131027de1ef812a0 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- Jan 11, 2013
-
-
Orgad Shaneh authored
Useful when the same file can appear more than once (e.g. staged + modified) Task-number: QTCREATORBUG-5347 Change-Id: I3ce716c22840c149490e00e6948612607ae57159 Reviewed-by:
Petar Perisin <petar.perisin@gmail.com> 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>
-
- Nov 20, 2012
-
-
Orgad Shaneh authored
Distinguish from const char * one. QString ctor is yet to be removed Change-Id: I2da231036c6417353b0566d39666d918ad141c6d Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Sep 21, 2012
-
-
Christian Kandeler authored
They are deprecated in Qt 5. Use fromLatin1() and toLatin1() instead. In Qt 5, these always do the same thing as their "Ascii" counterparts. The same goes for Qt 4, provided QTextCodec::setCodecForCStrings has not been set, which it hasn't. Change-Id: I04edeb376762b6671eff8156094f0d5e2cb8e1ea Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Aug 21, 2012
-
-
Orgad Shaneh authored
Actual path is found on startup and when setting is changed Change-Id: If2cb0735953b9fb64df7425230c98efb384d9287 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- Jul 19, 2012
-
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- Jun 05, 2012
-
-
Eike Ziller authored
Gets rid of a lot of code duplication. Change-Id: I2ce38fb38a0b61cb821e0bdc7bcc9a7ccdf9da72 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jun 04, 2012
-
-
Orgad Shaneh authored
Remove revertDiffChunkEnabled property Any diff view might relate to previous changes, so it makes sense to always allow reverting them Change-Id: I8da0fb2d8625ac98140d1bde0296a4478bc6a0b7 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- May 25, 2012
-
-
Eike Ziller authored
d-pointer instead of inheritance static methods Change-Id: I7b2f0c8b05ad3951e1ff26a7d4e08e195d2dd258 Reviewed-by:
hjk <qthjk@ovi.com>
-
- May 23, 2012
-
-
Eike Ziller authored
Using a central enum now. Change-Id: I20d88c9a3f8c62cf33e4b89a3442269f71918b06 Reviewed-by:
hjk <qthjk@ovi.com>
-
- May 22, 2012
-
-
Eike Ziller authored
Because these tend to add special characters into the editor instead of triggering the shortcut. Use Ctrl (aka Qt's Meta) instead. Change-Id: I5866772baf4550e6d048e4d7252b2899a6d28296 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- May 11, 2012
-
-
hjk authored
Less code on the user side, same meaning. Change-Id: I14e54a5d2ed8e024a51cce74eaf7c8419ad544be Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Apr 17, 2012
-
-
hjk authored
This also allows simple setting of breakpoints on failed asserts. Change-Id: I6dd84cbfaf659d57e39f3447386cebc0221b2b84 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Feb 20, 2012
-
-
Eike Ziller authored
And adapt the other API respectively. Change-Id: I1e04e555409be09242db6890f9e013396f83aeed Reviewed-by:
Bill King <bill.king@nokia.com> Reviewed-by:
Eike Ziller <eike.ziller@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 31, 2012
-
-
Friedemann Kleint authored
Change-Id: I85c007045efdb207f397b42fbce7a554ac9c9819 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- Jan 26, 2012
-
-
hjk authored
Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jan 25, 2012
-
-
hjk authored
This follows suit to the ICore changes. Change-Id: Iba2de1b1e3f2574fd1459892eae702e6af1cc7dc Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jan 24, 2012
-
-
hjk authored
Change-Id: I9b690d9b150c8d162b15370f9f8986267c9128f1 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
- Jan 11, 2012
-
-
hjk authored
Change-Id: Ica92448617e46223f99a5009e4a7493b83d4cda9 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Jan 09, 2012
-
-
hjk authored
According to style guide. Change-Id: I05c1d4f50ddbf2876ab7e0835f4abec95fd573b2 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@nokia.com>
-
- Nov 10, 2011
-
-
hjk authored
Change-Id: I3720946ba5485696822976567d83b4d6cb1fb283 x Change-Id: Iab58bc34bc56371405d132315573b484a533b77c Reviewed-by:
hjk <qthjk@ovi.com>
-
- Nov 03, 2011
-
-
hjk authored
Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Nov 02, 2011
-
-
hjk authored
Change-Id: I60b0c53681c6a0cc38231e805479deb614aa0096 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Sep 08, 2011
-
-
hjk authored
Change-Id: Iefd67a0461d9016b8ba0f3371df7ec6d42e188c5 Reviewed-on: http://codereview.qt-project.org/4321 Reviewed-by:
hjk <qthjk@ovi.com>
-
- Sep 05, 2011
-
-
hjk authored
Change-Id: Iffe04bc3bb0103cbac605f0734bbfd66eb7fd854 Reviewed-on: http://codereview.qt.nokia.com/4215 Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jul 29, 2011
-
-
Kai Koehne authored
Warn if the condition fails, but otherwise don't change the execution flow. Change-Id: Id7b14c745109b66960add967b2a4ef8d31e1a546 Reviewed-on: http://codereview.qt.nokia.com/2389 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jun 07, 2011
-
-
Tobias Hunger authored
Change-Id: I818eb8246f27b023e35155d50a8d08548660f709 Reviewed-on: http://codereview.qt.nokia.com/350 Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
- Jun 03, 2011
-
-
cerf authored
Because diff options are VCS-specific, these methods were removed : VCSBaseEditorParameterWidget::addIgnoreWhiteSpaceButton() VCSBaseEditorParameterWidget::addIgnoreBlankLinesButton() Associated msg*Label() and msg*ToolTip() This impacts cvs, hg, perforce, svn and bzr plugins Change-Id: I8d213ed3915653b78bae9ba8b6cbbd65fa269ce2 Merge-request: 340 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com> Reviewed-on: http://codereview.qt.nokia.com/323 Reviewed-by:
Qt Sanity Bot <qt_sanity_bot@ovi.com>
-