- Jun 25, 2010
-
-
hjk authored
A mostly mechanical change. Reviewed-By: con
-
con authored
You have to call setProgressValue(AndText) at least once unconditionally, before resultReporting and isProgressUpdateNeeded actually do the right thing. Also use qreal progress values internally while iterating directories.
-
con authored
Task-number: QTCREATORBUG-1690
-
Oswald Buddenhagen authored
there is not much point in complaining about internal queries of unknown properties anyway, so just don't try it. remove the default value from the complain argument to avoid mistakes either way in the future.
-
hjk authored
-
hjk authored
-
Bill King authored
The second line test could be misread by both the compiler or the reader. gcc even warns about this, so add brackets just to make sure.
-
- Jun 24, 2010
-
-
mae authored
The semantic highlighting and all the extra selections create many cursors, this does cost time in setText(). Solution: remove all extra selections on reload. Reviewed-by: Oswald Buddenhagen Task-number: QTCREATORBUG-1720
-
Robert Loehning authored
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
this is less insane than (and thus incompatible to) qmake, but i postulate that nobody will complain. :)
-
Oswald Buddenhagen authored
we don't use anything the features may set up, so loading them just wastes time. this may change if we start processing extracompilers properly.
-
Oswald Buddenhagen authored
make it an argument of the main entry point instead of a property
-
Oswald Buddenhagen authored
-
con authored
-
con authored
Especially for the file system filter, it's better not to block while collecting all the file names by first iterating over the file system. Now, the filters return an iterator, and the search thread takes a file from it, searches it, and takes the next file. This also unifies the file iterator for the custom locator filters and the find in files on file system search filter. Task-number: QTCREATORBUG-1690
-
Tobias Hunger authored
* Add a method to get a task from the taskmodel. * Use it.
-
Tobias Hunger authored
Reviewed-by: dt
-
Tobias Hunger authored
* Add task handler to show VCS blame output. * This taskhandler is not yet used!
-
Tobias Hunger authored
* Add task handler that enables copying task data into the clipboard * This is not yet used!
-
Tobias Hunger authored
* Add a taskhandler used to show the file/line a task is referring to in the editor. * This is not yet used!
-
Tobias Hunger authored
* A taskhandler is a class used to implement actions that can be done on tasks. This allows for decoupling the taskwindow from the functionality it provides, allowing for extensions to provide new actions there. Reviewed-by: dt
-
Oswald Buddenhagen authored
that's consistent with qmake, but without practical relevance.
-
Oswald Buddenhagen authored
when appending a list with one empty element to an empty list, we'd get into a state which would subsequently cause an assert.
-
Oswald Buddenhagen authored
use lowercasing only as a fallback
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
function calls need to change _FILE_ - but none of the other context-indicating variables.
-
Oswald Buddenhagen authored
catch up with the recent change in qmake
-
Oswald Buddenhagen authored
that's - as usual - making things rather braindead: - the included files inherit the current context's function defs, but not the variables - default_pre.prf is re-loaded for infile()/$$fromfile() - the entire config is re-loaded for include(file, PREFIX)
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
-
ck authored
-
Oswald Buddenhagen authored
Conflicts: src/shared/proparser/profileevaluator.cpp
-
Christian Kamm authored
What about paths that actually contain spaces? Reviewed-by: Erik Verbruggen
-
Oswald Buddenhagen authored
the cumulative mode tries hard to never lose already assigned variable values. the naive implementation turned assignments into additions, which made the trivial construct "FOO = $$FOO" double the size of the array each time it would be executed. so instead let the assignments be assignments, and then re-add the values that would be dropped. Reviewed-by: dt Task-number: QTCREATORBUG-1595
-
con authored
Conflicts: doc/qtcreator.qdoc src/plugins/help/helpplugin.cpp src/plugins/projectexplorer/projectexplorer.cpp src/plugins/projectexplorer/projectexplorer.h src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.cpp src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.h src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationwidget.cpp src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp src/tools/qml/qmldump/main.cpp
-
Christian Kamm authored
Task-number: QTCREATORBUG-1728 Reviewed-by: Kai Koehne
-
Christian Kamm authored
Task-number: QTCREATORBUG-1715
-
Christian Kamm authored
The relevance member is already used by the CompletionCollector. Instead I introduced the 'order' member to store a value used for the sorting of completion items. Reviewed-by: Erik Verbruggen
-