- Feb 06, 2013
-
-
Leena Miettinen authored
The \i and \o commands were replaced with \li and \bold was replaced with \b in QDoc for Qt 5. The \input command was replaced with \include in the docs. Change-Id: I257d1bebb8ebc739ca20e0d29fcf0406ecb14534 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- Jan 29, 2013
-
-
Robert Loehning authored
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205 Reviewed-by:
Kai Koehne <kai.koehne@digia.com>
-
- Jan 17, 2013
-
-
hjk authored
Change-Id: Ie18714ac2872a085e8c20d445472901cc9f6b6c5 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Jan 15, 2013
-
-
Orgad Shaneh authored
Change-Id: Ic483d2ef05112463bc80d96ac4adf858b5f158fd Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jan 11, 2013
-
-
Orgad Shaneh authored
Change-Id: I9d1c04c845a8d8513e143dd8378aacb4a57c34ed Reviewed-by:
hjk <qthjk@ovi.com>
-
- Jan 08, 2013
-
-
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>
-
- Dec 14, 2012
-
-
Francois Ferrand authored
When making a case insensitive search, try to keep the string capitalization when doing the replace: - All upper-case matches are replaced with the upper-case new text. - All lower-case matches are replaced with the lower-case new text. - Capitalized matches are replace with the capitalized new text. - Other matches are replaced with the new text as provided. Note: this does not work with regexp replace, only plain text. Change-Id: I87cbc28eb64688bdf3c8c6ec173fcb22f91abcd0 Reviewed-by:
Cristian Tibirna <tibirna@kde.org> Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Dec 12, 2012
-
-
Orgad Shaneh authored
Task-number: QTCREATORBUG-8408 Change-Id: I6a7eb34ff3fe296585be3e997d8c7f560612a560 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Nov 28, 2012
-
-
David Schulz authored
Change the accepted length of a search result, if the replacing text is longer then 0 character. If it would accept also for 0 length character we would have an endlles loop Task-Number: QTCREATORBUG-8317 Change-Id: I81a6dccb2a1e16faa6ce8e834ea4b63bae84ecfa Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Nov 27, 2012
-
-
Tobias Hunger authored
Change-Id: I832ea6ebf078e533623fb748809dd71b5abfb645 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Nov 16, 2012
-
-
David Schulz authored
Searching in a blockselection for the regular expressions start of line '^' or line end '$' results in an infinite loop. Only occures when the blockselection didn't contain the searched regular expression. Task-number: QTCREATORBUG-8159 Change-Id: I36412387ecce381300b75d0cd0a452ce5bf1094e Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Nov 13, 2012
-
-
David Schulz authored
Task-number: QTCREATORBUG-8070 Change-Id: Ic220e3364aa9a5227518a210dbf0590deb06a4d6 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
- Nov 09, 2012
-
-
Orgad Shaneh authored
Change-Id: I0918fbc20027a340facbedc685938a72d117d53b Reviewed-by:
hjk <qthjk@ovi.com>
-
- Oct 05, 2012
-
-
hjk authored
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Orgad Shaneh authored
Avoid using "." as includePath when it is unneeded Change-Id: I9bc6f4ebe50409f49782520033fd5f098aed10d0 Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Oct 03, 2012
-
-
Orgad Shaneh authored
Change-Id: I6514deb70162bd52687e6143813bcf1325a797db Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Sep 20, 2012
-
-
Christian Kandeler authored
Change-Id: Ie49bdf576a6d3543aef6df133b27c8827775c935 Rationale: a) It is conceptually cleaner to do the changes to the model in between calls to beginResetModel() and endResetModel, respectively. b) The function is deprecated in Qt 5, for exactly that reason. Reviewed-by:
hjk <qthjk@ovi.com>
-
- Sep 13, 2012
-
-
Daniel Teske authored
The commit looks big, but it's mostly trivial. Also any build/run related popups are now "flashes" if the current mode has no placeholder. Task-number: QTCREATORBUG-7875 Change-Id: I3af40557f7af01798f905c0d1829423c80058cb6 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Christian Kandeler authored
Change-Id: Ibd244963c5cd643fc0e8358ceabff0ad5f6599eb Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Sep 10, 2012
-
-
Orgad Shaneh authored
Change-Id: Ia3a77c4512c03496cac492d401c2bff3eee7a980 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Aug 30, 2012
-
-
Jarek Kobus authored
Change-Id: I3c96c467f79fa7722c270a5887997294a7042adc Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
Orgad Shaneh authored
Change-Id: Ie59a7613775c7e5ab19524adc0c5658a81532e95 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Aug 27, 2012
-
-
Christian Kandeler authored
The class' member functions are intended to be used instead of the Q_OS_* macros in all contexts where the latter are not syntactically required. This lowers the likelihood of changes made on one platform breaking the build on another, e.g. due to the code model missing symbols in #ifdef'ed out code when refactoring. Change-Id: I4a54788591b4c8f8d589b8368a6c683d4155c9fa Reviewed-by:
hjk <qthjk@ovi.com>
-
- Aug 24, 2012
-
-
hjk authored
Change-Id: Ia667895b619d0bb37561dce348adb7269df2fb9c Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 30, 2012
-
-
Konstantin Tokarev authored
Also, it's 2012 now. Change-Id: I69a8d1d77658b2bb2cb547362d5e3163385cab3b Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 19, 2012
-
-
Konstantin Tokarev authored
Also removed all <QMainWindow> includes which are not needed anymore. Change-Id: I393c9a62a5c6df95d9f35d872e1473a4f13bcdc4 Reviewed-by:
hjk <qthjk@ovi.com>
-
Eike Ziller authored
Change-Id: I7134d7de30bcf9f9dcfad42520dd45ee083a852d Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
- Jul 12, 2012
-
-
Andre Hartmann authored
Every click on Search Again displayed an additional warning message bar. If the bar is closed with the cross button, it reappears on Search Again. This implementation extended InfoBar with a reuseable method bool containsInfo(const QString &id). Task-number: QTCREATORBUG-6873 Change-Id: I1de100d3526b861fc2de190e32f903795fed52c0 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jun 19, 2012
-
-
Eike Ziller authored
Change-Id: Ib938aa4999c7c418a82304c5cca2e8748ef9d228 Reviewed-by:
hjk <qthjk@ovi.com>
-
Yuchen Deng authored
Change-Id: Ia3e4df528d391580064efbeeab75016335a4299d Reviewed-by:
Joerg Bornemann <joerg.bornemann@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>
-
Eike Ziller authored
Task-number: QTCREATORBUG-6116 Change-Id: I57a66b8989f1cc4137b02df370704dfe43d392ac Reviewed-by:
Robert Löhning <robert.loehning@nokia.com> Reviewed-by:
Eike Ziller <eike.ziller@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 22, 2012
-
-
Eike Ziller authored
Task-number: QTCREATORBUG-6820 Change-Id: Ic14c0ea6f26e4a05c642012b87578f30c817fef7 Reviewed-by:
Robert Löhning <robert.loehning@nokia.com> Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Eike Ziller authored
We were always using the editor font height, even for searches like C++ Symbols which don't use the editor font in the search result items. Change-Id: I2e937d5e934990aceb43898e4ee82dfbd0364d42 Reviewed-by:
Aurindam Jana <aurindam.jana@nokia.com>
-
- May 16, 2012
-
-
Eike Ziller authored
Change-Id: I43c893176e5a83530f909371fc143dbb0cafd3ba Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- May 10, 2012
-
-
Eike Ziller authored
Change-Id: Iaef98ed540f29ed5c9a4a6e6f476349cfd15aa92
-
- May 09, 2012
-
-
Friedemann Kleint authored
Coding style says class should be used everywhere. Change-Id: Ia1c75d6b3222c6672e1ffac22395affd2f2add1c Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- May 07, 2012
-
-
Konstantin Tokarev authored
There was an issue with checkboxes "Case Sensitive", "Whole Word", and "Regular Expression": their state was properly saved in FindPluginPrivate::m_findFlags, but was not properly restored in GUI of FindToolWindow on the next run of Qt Creator. This patch fixes this issue. Change-Id: I31e1e14a4117fbf4f4d17e82b3fa2b90973be339 Reviewed-by:
Konstantin Tokarev <annulen@yandex.ru> Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-