aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer
Commit message (Collapse)AuthorAgeFilesLines
* Fixes crash on adding configurationsdt2010-04-151-1/+1
| | | | | Reviewed-By: hunger (cherry picked from commit ee230f2d5430010eeb802f8a9b7748639514f051)
* Fix crash on removing cloned buildconfigurationsdt2010-04-151-4/+4
| | | | | Reviewed-By: hunger (cherry picked from commit 5c6007226fc8a8e00899d5832c7f3f2efe55566d)
* GCC parser improvementsTobias Hunger2010-04-141-1/+54
| | | | (cherry picked from commit 37d192099d707589f8dbeda69430c3a72eaef274)
* Handle "/usr/bin/ld: cannot find -lsomelib" in gccparserTobias Hunger2010-04-131-17/+33
| | | | | | | | * Document the hariest regexp * Simplify the parser a bit * Catch "/usr/bin/ld: cannot find -lsomelib" (and others) as errors. (cherry picked from commit 8b969a67a0a300641779ba31f7c630dc5ab2ba2c)
* Fix some false positives in the build issuesTobias Hunger2010-04-132-5/+34
| | | | | | | * "In blah method " messages are informative, not errors. * Be more picky about file names: Stops errors from ranlib, rm, etc. being reported as build issues. (cherry picked from commit 879f71c2a35ab3f7f6286e88396455adca7ba847)
* Make gnumake parser less noisyTobias Hunger2010-04-132-51/+81
| | | | | | | | | * Do not report make warnings at all. * Do only report the first make error. * Do not report any make errors after a compile error. * Handle more variants of mingw makes * Actually parse stderr for errors (cherry picked from commit f7335948bb739aa0b65b3ef69be4dd678f0925b7)
* Fix clearing of build issuesdt2010-04-091-0/+1
| | | | | Reviewed-By: hunger (cherry picked from commit fff5c6aea50d197c663f11de4a937c5ff5429a4b)
* Fix removing first runconfiguration crashdt2010-04-081-1/+1
| | | | | Task-Nr: QTCREATORBUG-1000 (cherry picked from commit f3caf7c06767d377768b71b71af27d0d7384555e)
* Fix disabling of remove runconfigurationdt2010-04-081-0/+4
| | | | (cherry picked from commit abf998d68bfd47e8ba40f8bdf0c8b036e05c3d31)
* Fix setActiveRunconfiguration(0)dt2010-04-081-1/+1
| | | | (cherry picked from commit 2d60bd35421fcb80dc5dbf80d5d32e1849d984ab)
* Fix deletion of buildconfigurationsTobias Hunger2010-04-011-18/+0
| | | | | | | | Hitting the remove button to delete buildconfigurations resulted in the wrong buildconfiguration getting removed. Reviewed-by: dt (cherry picked from commit eca4c5aef029f155b35a888fbeababf2f5596bcd)
* Version bump.con2010-03-311-5/+5
|
* Custom wizards: Lower case all tags, prepare translations.Friedemann Kleint2010-03-311-4/+12
| | | | | Prepare translations of wizards shipped by Nokia to be searched in Qt Creator's qm-files.
* Replace QWizard with Utils::WizardJarek Kobus2010-03-315-11/+25
|
* Remove customexecutable RCs again if they are unusedTobias Hunger2010-03-312-0/+8
|
* Do not add linebreaks into the MPTS tooltipsTobias Hunger2010-03-301-1/+1
| | | | | | | | | | | This stops projects with long project names from being displayed like this: Project: longprojectName Target: Something Thanks to Roberto for the suggestion.
* Make sure our active target is not changed accidentallyTobias Hunger2010-03-301-4/+6
| | | | | * Adding a project to the project mode used to reset the active target. Make sure to restore the original one.
* Make targetsettingspanel more robustTobias Hunger2010-03-301-6/+11
| | | | Kudos to dt for spotting this
* Add simple unit tests for abld parserTobias Hunger2010-03-292-1/+1
|
* Only build outputparser tester when compileing with testsTobias Hunger2010-03-292-0/+8
|
* Fix unload action in context menu.dt2010-03-291-1/+1
| | | | | | Was showing the wrong projectname. Reviewed-By: danimo
* Make the custom executable dialog only resizable in the widthdt2010-03-291-1/+6
|
* FolderNavigationWidget: Fix file watcher leaks.Friedemann Kleint2010-03-292-25/+19
| | | | | | by modifying it to change the root path of the model instead of changing the top index of the view. Depends on fix for QTBUG-8632.
* Fix restoring of default sessionsdt2010-03-292-8/+9
| | | | | | They appeared to be always empty. Task-Nr: QTCREATORBUG-977
* Export ProjectExplorer::Task again.dt2010-03-291-1/+1
| | | | | | Accidentally removed that while moving the class. Reviewed-By: con
* Moved CMake settings page under Projects categoryThorbjørn Lindeijer2010-03-262-1/+2
|
* Added icons to options dialog categoriesThorbjørn Lindeijer2010-03-263-2/+9
| | | | Some categories do not have icons yet, unfortunately.
* Fix compiledt2010-03-261-4/+0
|
* Replace "set build/run configuration" menus with select target commanddt2010-03-261-104/+9
| | | | Which opens the target selector in the bottom left.
* Use startup project not current project for buildingdt2010-03-263-26/+122
| | | | Except in the context menu
* Fix message from Project Desktopdt2010-03-261-1/+1
| | | | Reviewed-By: Robert Loehning
* setStartupProject(0) now works as it shoulddt2010-03-261-9/+1
| | | | | Remove code that tries to be clever, I'm pretty sure it's better this way.
* Sync the active target on the projects page with the active targetdt2010-03-265-31/+10
|
* Fix crash if the startup project changes to 0dt2010-03-261-1/+2
|
* Fix en/disabling of add/remove target on projects pagedt2010-03-252-4/+5
| | | | Reviewed-By: hunger
* Simplfy code dealing with the projects pagedt2010-03-2514-208/+91
| | | | | | | | Distinguish between pages that are target specific and project specific. Do the magic hierarchy reduction if only one target is supported just in the projectwindow. Treat the targets page specially. Reviewed-By: hunger
* Synchronize startup project and current project on projects modedt2010-03-252-0/+14
|
* Select the tab after insertiondt2010-03-251-1/+1
| | | | Reviewed-By: con
* Add currentIndex API to DoubleTabWidgetdt2010-03-252-1/+20
| | | | Reviewed-By: con
* Remove isApplication() and simplfy startup project logicdt2010-03-253-17/+5
|
* Add project setting migration path for Symbian package creation.con2010-03-251-0/+126
| | | | | | | | | | Moves signing info from one of the run configurations as a build step to the build configurations. Users with different signing settings in different run configurations need to re-configure their projects manually (by creating build configurations for the different signing settings). Reviewed-by: Tobias Hunger
* Introduce method to access the project directoryTobias Hunger2010-03-253-2/+10
| | | | | | ... use it. Reviewed-by: dt
* Remove make active from the runconfigurations pagedt2010-03-243-124/+117
| | | | The active runconfiguration is now the same as the one you are editing.
* Multiple fixes to the progress barsJens Bache-Wiig2010-03-241-3/+3
| | | | | | | | * made them a few pixels smaller * they now animate when collapsed * they no longer fade out when an error is reported Reviewed-by: thorbjorn
* Header cleaning mainly in find/cpaster.Friedemann Kleint2010-03-242-6/+6
|
* Disable the 'Add to project' part when there are no projectsThorbjørn Lindeijer2010-03-242-2/+9
| | | | | | | Or when the list is empty because it is not supported, like when creating a new project. Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
* Fix updating run control buttons when project has no active runconfigLasse Holmstedt2010-03-241-3/+12
| | | | Reviewed-by: erik verbruggen
* Don't trim lines before pushing them to the parsersdt2010-03-231-4/+4
| | | | Reviewed-By: hunger
* Add <b> to make the tags balanceddt2010-03-231-1/+1
|
* Introduced a single convenient function for updating additional contextsThorbjørn Lindeijer2010-03-231-13/+8
| | | | | | | | While before you had to call add, then remove for each context id and then call update, now you call updateAdditionalContexts with a list of contexts to remove and add. It has the update step built in. Reviewed-by: con