- Apr 11, 2013
-
-
Oswald Buddenhagen authored
Change-Id: I8bb9b4eb0ae5ed9b283da422be882603ae0e1b49 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com>
-
- Apr 03, 2013
-
-
Oswald Buddenhagen authored
the information is redundant now Change-Id: Icc8c8b4ace11538d45c6c9e1dbe5a7976f4743e1 Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Eike Ziller <eike.ziller@digia.com>
-
Oswald Buddenhagen authored
instead of directly including the respective pri files in *_dependencies.pri, set variables and let qtcreator.pri resolve them to includes. this will allow us to re-use the dependency info elsewhere. Change-Id: Iaa33924e428ac0409660f42df2f98a7978452d3e Reviewed-by:
Eike Ziller <eike.ziller@digia.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- Apr 02, 2013
-
-
Oswald Buddenhagen authored
Change-Id: I4025539f3875e79f03743ba9ed3fd09cd31b998d Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
Oswald Buddenhagen authored
Change-Id: I25645bb625b467c6f9d895ff89a70acd6a25683e Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Mar 27, 2013
-
-
Oswald Buddenhagen authored
this makes it uniform for all plugins Change-Id: I46ede2cb576059dfbaa74c2448517a102eb44ddf Reviewed-by:
Eike Ziller <eike.ziller@digia.com> Reviewed-by:
Tobias Hunger <tobias.hunger@digia.com>
-
- Mar 13, 2013
-
-
Friedemann Kleint authored
Change-Id: Iafd1b3be1ad43bb7519e14059ac2d33eb859c625 Reviewed-by:
Kai Koehne <kai.koehne@digia.com> Reviewed-by:
Christian Kandeler <christian.kandeler@digia.com> Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- Feb 22, 2013
-
-
Debao Zhang authored
Qt 4.8.0 or later is required to build Qt Creator. Change-Id: I4d836d0f17fe8f0e3fc5757d4f08111b87edee67 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> 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 16, 2013
-
-
Orgad Shaneh authored
Change-Id: I2b6c5876cafb7cf19fc3040bc84fd88a90b6c0e0 Reviewed-by:
hjk <qthjk@ovi.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>
-
- Dec 13, 2012
-
-
Ray Donnelly authored
The public virtual inheritence of ResourceEditorDocument from Core::IDocument seems to be creating an invalid vtable. It's now just public inheritence which is all that is needed. The compiler in question was Ruben Van Boxem's 4.7.2-2. Change-Id: I66f54ec04ce5aad847ac5bd6a4807fbd613c2d99 Reviewed-by:
Daniel Teske <daniel.teske@digia.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>
-
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 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>
-
- 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>
-
- Aug 21, 2012
-
-
Kai Koehne authored
iconProvider() is a static method. Change-Id: I4c17a3890207ac4906a236894a6a032413b1e060 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
- Aug 17, 2012
-
-
Konstantin Tokarev authored
Change-Id: Ice82d5ce76c97f90b76745eb64546ebf8bb4e690 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Aug 07, 2012
-
-
Konstantin Tokarev authored
This menu action provides easy way to insert references to resources into source code. Change-Id: I3a77910e82c6ef896cac8a2562d59bb9db78efa2 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com> (cherry picked from commit da3e3200) Reviewed-by:
Konstantin Tokarev <annulen@yandex.ru>
-
- Aug 06, 2012
-
-
Konstantin Tokarev authored
This menu action provides easy way to insert references to resources into source code. Change-Id: I3a77910e82c6ef896cac8a2562d59bb9db78efa2 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 24, 2012
-
-
Konstantin Tokarev authored
Change-Id: Ie8529d0daf1573130212be7c0acfd42f7627a092 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Konstantin Tokarev authored
Change-Id: I24a142318cd6898ce32991085dcbeb7f00507f4e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 19, 2012
-
-
Konstantin Tokarev authored
Made add and remove operations of ResourceEditor VCS-aware. Also, remove operation now can remove files from filesystem. FileUtils::removeFile() and VcsManager::promptToAdd functions were extracted from ProjectExplorer to prevent code duplication. RemoveFileDialog was also moved to coreplugin. Change-Id: Ia51127288030e52ce9475b369e56ea034dfa5d1e Reviewed-by:
Orgad Shaneh <orgads@gmail.com> Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
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>
-
hjk authored
Change-Id: I03f687598b30d5a8c4bd8e3baf4e362fcbcf2a4c Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 18, 2012
-
-
Christian Kandeler authored
Also change misleading comment. Change-Id: I22666ae3a06b98dea0be35d95392ae4e022b0d73 Reviewed-by:
Konstantin Tokarev <annulen@yandex.ru> Reviewed-by:
hjk <qthjk@ovi.com>
-
Konstantin Tokarev authored
Change-Id: I623b47ab4fdad7abf07e47abd99959f0326639c6 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Konstantin Tokarev authored
Renaming supports version control. To prevent code duplication part of ProjectExplorerPlugin::renameFile implementation was separated into FileUtils::renameFile. Change-Id: I28481bea89d0824339e5db025ceb7216713bd5a0 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 12, 2012
-
-
Christian Kandeler authored
Change-Id: If83dd6afe039a07b39034e724d78bfc1e5138552 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jul 09, 2012
-
-
Konstantin Tokarev authored
Also added possibility to recheck file existance. Change-Id: I9f5e1d0499eb86238bb5c26420c48f322c87c65e Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
- Jun 19, 2012
-
-
Yuchen Deng authored
Change-Id: Ia3e4df528d391580064efbeeab75016335a4299d Reviewed-by:
Joerg Bornemann <joerg.bornemann@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 16, 2012
-
-
Konstantin Tokarev authored
This patch provides more convenient way to view/edit resource files than "Open With" context menu. Change-Id: I1c1fbfe48ed069d004f900e040b6517a4064b0f1 Reviewed-by:
Eike Ziller <eike.ziller@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>
-
- May 08, 2012
-
-
Christian Kandeler authored
- Bump Creator version. - Add missing dependency to resource editor. Change-Id: I9337d916ec765ad7b299aaa78c24e6c75afd74f5 Reviewed-by:
Joerg Bornemann <joerg.bornemann@nokia.com>
-
Konstantin Tokarev authored
Change-Id: Icf3770fde8329d8507befeeef89186f86476749d Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-