- Jan 31, 2012
-
-
Tobias Hunger authored
Rename typeName() to typeDisplayName() to make it clear that this is a user visible string that is translated. Add type() method to provide a simple string that can be used by build system plugins to find out which kind of toolchain currently is in use. Change-Id: I7c3f050aa82c8b17071fd03ee142c5ae2f17b1de Reviewed-by:
Daniel Teske <daniel.teske@nokia.com> Reviewed-by:
Marco Bubke <marco.bubke@nokia.com>
-
Tobias Hunger authored
Task-number: QTCREATORBUG-6876 Change-Id: I6410a9894c2482d2b6ea7f2fba9b67f7fdb4fff6 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Friedemann Kleint authored
Task-number: QTCREATORBUG-6878 Change-Id: I4eab2406897c45f19a8ba297e3d7adbed8eafdd9 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
Flex Ferrum authored
Handled to major cases of 'auto' variable declaration: 1. auto var = someInitializer; 2. Q_FOREACH(auto item, collection) or foreach(auto item, collection) In first case type deducted directly from initializer. If variable has no initializer then corresponded error reported. In second case type deducted from '*collection.begin()' expression. Change-Id: Ie930add1648b99440281ae04d973fd6904bc9e46 Reviewed-by:
Roberto Raggi <roberto.raggi@nokia.com>
-
- Jan 30, 2012
-
-
Eike Ziller authored
Change-Id: I86ba3734bd9a64b7d13ce7b7171a65eeb82dfa3d Reviewed-by:
Karsten Heimrich <karsten.heimrich@nokia.com>
-
hjk authored
Change-Id: I4ce41f516bd361c0c58b6a0f0f3fd541126f0620 Reviewed-by:
Leandro Melo <leandro.melo@nokia.com>
-
hjk authored
Change-Id: I17691e3b3b649fa24a553d49868e7440004e09c7 Reviewed-by:
hjk <qthjk@ovi.com>
-
Eike Ziller authored
Change-Id: Ic05b2ec842be1486203c3d9e6e0fc28f1fcf91b4 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
Denis Mingulov authored
QString::fromLocal8Bit() and QString::fromUtf8() are much more slower than an obvious QString::fromLatin1() and QLatin1String(), so this commit changes some places where these functions are really not needed. QString::fromLatin1() is used in case if QString object is used immediately (something like QString::fromLatin1().arg()), QLatin1String is used otherwise like in other places (for example, QPixmap(QLatin1String("..."))) - to allow to use default QString constructor and work with QT_NO_CAST_FROM_ASCII. Change-Id: Ib6eb1c61e9cb35c7c5b7569fea77c5e41d32621a Reviewed-by:
hjk <qthjk@ovi.com>
-
Robert Loehning authored
Change-Id: I2796aaf40d0ffcf89aca085afdc685f57e1b4f76 Reviewed-by:
Christian Stenger <christian.stenger@nokia.com>
-
Tobias Hunger authored
The comparison operator on the abstractmsvctoolchain is not enough. Change-Id: I5d8db422d4a996e561a25dc754a9eba151b75ff1 Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
David Schulz authored
Task-number: QTCREATERBUG-6176 Change-Id: I1c45b951bfde0b0d33bf462f532da7cbdbaa3fe7 Reviewed-by:
Leandro Melo <leandro.melo@nokia.com>
-
Daniel Molkentin authored
Change-Id: Iab025ed796e807aab0315a583a04ed8865fc0d44 Reviewed-by:
Daniel Molkentin <daniel.molkentin@nokia.com>
-
Tobias Hunger authored
Unbreaks MSCV toolchain registration. Task-number: QTCREATORBUG-6875 Change-Id: I55e52251ca1621320b5f9db022bab8d79f19030e Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Eike Ziller authored
Change-Id: Ifb5a14f587358e696eb3e199f5d223832a0c2837 Reviewed-by:
Alessandro Portale <alessandro.portale@nokia.com> Reviewed-by:
hjk <qthjk@ovi.com>
-
Daniel Molkentin authored
Deploys prebuilt artifacts from remote repository. Currently only used on Windows, includes the 64 bit debugging helper and a stable version of jom, taken from an external repository. Change-Id: I9f034f184f94bf4e0b088338cde6d8e0d6c7d419 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com> Reviewed-by:
Daniel Molkentin <daniel.molkentin@nokia.com>
-
Denis Mingulov authored
TextEditor BaseHoverHandler::addF1ToToolTip() method has used a resource from CppEditor (:/cppeditor/images/f1.png), despite of the inverse official dependecy in PluginSpec file and other classes. As it is not used anywhere else - to fix the issue f1.png and f1.svg are moved from CppEditor to TextEditor. Change-Id: I14b542837d6337bd08e19ad72cf4a869be08465a Reviewed-by:
Christian Stenger <christian.stenger@nokia.com> Reviewed-by:
Leandro Melo <leandro.melo@nokia.com>
-
hjk authored
Change-Id: I059af357fa772290a78f62c31cb7c532ae7d77ff Reviewed-by:
Kai Koehne <kai.koehne@nokia.com>
-
Tobias Hunger authored
Save/Restore has been updated to reflect this: We now save manual as well as auto-detected tool chains into the user toolChains.xml file. When loading we load the SDK as well as the user toolChains.xml files. We then do a autodetection run. All the tool chains restored that are marked up as auto-detected are then checked again: * the tool chain was autodetected again: Throw away the newly auto- detected tool chain and reuse the saved one. This makes sure we keep the QUuid that is now part of the tool chains id. * the tool chain was not autodetected again: Throw away the saved tool chain. * the tool chain was newly autodetected: Add the new tool chain We keep the old id around in the legacyId() method. It is used when loading old .user files only. So there is no need to implement this method for new tool chains. Task-number: QTCREATORBUG-6702 Change-Id: Ifc0a216e5351a8a57db03615ba329e355e7d5f59 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
Tobias Hunger authored
Use Utils::FileName and Core::Id in Task structure. Change-Id: Ia0ed459f86df36ffe547abde7c240b0ac409bcf5 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
Eike Ziller authored
Change-Id: Iff13147fd6541741b94f4bd2f611e05bd87a7885 Reviewed-by:
Daniel Molkentin <daniel.molkentin@nokia.com>
-
- Jan 27, 2012
-
-
Friedemann Kleint authored
- Change the diff parsing to use QString reducing the conversions. Change-Id: Id4d84947479a14d58b8a60157a98a56db5a89ddb Reviewed-by:
Tobias Hunger <tobias.hunger@nokia.com>
-
Robert Loehning authored
The generator must match the mkspec of qmake in PATH. Change-Id: Ibd6d345c202719cdf2a8e8a5e2a5fce470732d5b Reviewed-by:
Christian Stenger <christian.stenger@nokia.com>
-
Adam Treat authored
This crash can happen when enabling/disabling a certain combination of plugins and restarting. There was a null pointer de-reference that was occurring because the qt4projectmanagerplugin was referencing an action that it believed to have been registered by the texteditorplugin when it was initialized. However, apparently the texteditorplugin was not initializing its actions at plugin initialization, but rather when 'extensionsInitialized' was called. I do not know the call graph for when this is to be called, but I encountered at least one situation where the qt4projectmanagerplugin was being initialized before this. Change-Id: Iede1831e0ac9c92b80a079157e1bdc8c66473470 Reviewed-by:
Leandro Melo <leandro.melo@nokia.com> Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Robert Loehning authored
Change-Id: Ib2cc65378b74f662652434dd1a65d845ee3fb741 Reviewed-by:
Christian Stenger <christian.stenger@nokia.com> Reviewed-by:
Bill King <bill.king@nokia.com>
-
Friedemann Kleint authored
Change-Id: I83c7e850dc959a58207efb41702a480678f5cfd3 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@nokia.com>
-
hjk authored
Change-Id: I5c1275ba3f596d8911fd2e4404181bf57b58f494 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com> Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Leena Miettinen authored
Move the screenshot after the text that describes it. Change-Id: I82ea4e5ccf14a10ebde8c4c76fc9366c2b9e1dca Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@nokia.com>
-
Leena Miettinen authored
Change-Id: I53c42d827d27280f9c3fcff81dbc939bda8d42b5 Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@nokia.com>
-
Orgad Shaneh authored
Change-Id: I16205f1719c898e260debf7c95a7c818ef116846 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-
Eike Ziller authored
This is slowly being replaced by the "Extending Qt Creator Manual" (source in doc/api, 'make docs' generates it in doc/html-dev) Change-Id: I38e92b5b3b6d41e03fcccee5c299a3aebc5ed354 Reviewed-by:
Eike Ziller <eike.ziller@nokia.com>
-
Christian Stenger authored
This avoids some timing issues as well as a problem I only saw on Mac: Sometimes Squish fails inside placeCursorToLine() with 'I don't know how to type on object of type QmlJSEditor::QmlJSTextEditorWidget'. Change-Id: Ifc192914375fb37362fa31399be4972c9ce50b92 Reviewed-by:
Robert Löhning <robert.loehning@nokia.com> Reviewed-by:
Bill King <bill.king@nokia.com>
-
Orgad Shaneh authored
Change-Id: I8848e5e69d540f0b14ec6cc602d19b9e554bf1d0 Reviewed-by:
hjk <qthjk@ovi.com>
-
Orgad Shaneh authored
Just like the other dialogs Change-Id: If2a87a688f5d3653bca02912dc9052399f72de87 Reviewed-by:
hjk <qthjk@ovi.com>
-
Robert Loehning authored
Change-Id: I3ee097fbbcf904df854e212eef43f6faf71f2295 Reviewed-by:
hjk <qthjk@ovi.com>
-
Daniel Teske authored
No other .pro file has a license. Change-Id: I2598606d0160b07db969eb849498f07ba62f9f2f Reviewed-by:
Jerome Pasion <jerome.pasion@nokia.com>
-
Christian Stenger authored
Don't work around a bug. Change-Id: I84bd88fa3f0b39fadd1816f39bdd8ba7b8792a90 Reviewed-by:
Robert Löhning <robert.loehning@nokia.com> Reviewed-by:
Bill King <bill.king@nokia.com>
-
- Jan 26, 2012
-
-
Daniel Molkentin authored
Change-Id: I086f50adace23b8ffd07b431af5d5612ee747d01 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
Daniel Molkentin authored
Change-Id: Ifc258886f7d6e7d5b02caae8994210aeef221554 Reviewed-by:
Robert Löhning <robert.loehning@nokia.com>
-
hjk authored
Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by:
Daniel Teske <daniel.teske@nokia.com>
-