- 11 Aug, 2010 1 commit
-
-
dt authored
Use the full path for folders to sort in the project tree. For virtual folders ensure that the path ensures the sorting we want. Reviewed-By: kkoehne
-
- 27 Jul, 2010 1 commit
-
-
dt authored
Qmake treats "." special, we need to do the same
-
- 09 Jul, 2010 1 commit
-
-
Friedemann Kleint authored
when attempting to save a file under Perforce. Reviewed-by: con Task-number: QTCREATORBUG-1823
-
- 07 Jul, 2010 1 commit
-
-
ck authored
Reviewed-by: dt
-
- 06 Jul, 2010 1 commit
-
-
con authored
Task-number: QTCREATORBUG-1631
-
- 24 Jun, 2010 1 commit
-
-
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.
-
- 18 Jun, 2010 4 commits
-
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
-
Oswald Buddenhagen authored
the message manager is not thread-safe, so don't use it outside the main thread.
-
- 16 Jun, 2010 1 commit
-
-
Oswald Buddenhagen authored
-
- 09 Jun, 2010 2 commits
-
-
Oswald Buddenhagen authored
every path should be separator-fixed Reviewed-by: dt
-
Oswald Buddenhagen authored
-
- 08 Jun, 2010 1 commit
-
-
Jarek Kobus authored
Extract qrc paths from ui file by simple xml parsing. Reviewed-by:
dt <qtc-committer@nokia.com> Reviewed-by:
Friedemann Kleint <qtc-committer@nokia.com> Task-number: QTCREATORBUG-42
-
- 04 Jun, 2010 1 commit
-
-
Oswald Buddenhagen authored
-
- 20 May, 2010 1 commit
-
-
dt authored
Task-Nr: QTCREATORBUG-1443
-
- 18 May, 2010 4 commits
-
-
dt authored
And refuse to add it twice. The check is pretty simplistic in that it doesn't take scopes or which variable it's exactly in into account. But in those cases you need to edit the .pro file manually anyway. Task-Nr: QTCREATORBUG-932 Task-Nr: QTCREATORBUG-891 Task-Nr: QTCREATORBUG-653
-
dt authored
-
dt authored
That is e.g. SOURCES instead of whatever variable is used first in the project file. Reviewed-By: ossi
-
dt authored
Task-Nr: QTCREATORBUG-765
-
- 12 May, 2010 1 commit
-
-
dt authored
Reviewed-By: con Reviewed-By: Friedemann Kleint We now support renaming files. The version control system tries first to rename, if that doesn't support or can't rename the file we do a normal rename. (Note: git, hg, perforce > 2009.02 support renaming, cvs not. (perforce untested)). We correctly notify all editors of the renamed file and tell the project manager to rename the file in the project. Note: Only the qt4projectmanager knows how to rename files. Note: renaming folders, moving files to different folders, renaming .pro/.pri files is not supported. Those things can be later added after this has proven to work correctly in the simple case. Also we don't do any actions based on the renaming like renaming classes, changing include guards or #include lines.
-
- 07 May, 2010 1 commit
-
-
con authored
Symbian mkspec puts the package file into the build directory, not the destination directory.
-
- 14 Apr, 2010 1 commit
-
-
dt authored
Task-Nr: QTCREATORBUG-1108 Task-Nr: TOOLS-339
-
- 13 Apr, 2010 1 commit
-
-
dt authored
The UI_DIR and MOC_DIR weren't added to the includepath for new projects, since at the time of parsing the directories don't exist yet. We now always add UI_DIR and MOC_DIR to the include path, without caring whether they exist. Task-Nr: QTCREATORBUG-1064 Reviewed-By: ossi
-
- 29 Mar, 2010 2 commits
-
-
dt authored
This also fixes pkg-config support for the code model. Task-Nr: QTCREATORBUG-976
-
dt authored
On windows when linking to a library via -L/some/path, the library is found in /some/path while linking. But running that app fails, since it can't find the library. We now adjust PATH to include all paths from LIBS and thus the library is found.
-
- 22 Mar, 2010 1 commit
-
-
con authored
Reviewed-by: dt
-
- 17 Mar, 2010 1 commit
-
-
Friedemann Kleint authored
-
- 15 Mar, 2010 1 commit
-
-
dt authored
The solution ain't great. Essentially we need to fix that path() needs to be unique and a 1:1 mapping to the file system by introducing a separate method for the first usage. Task-Nr: QTCREATORBUG-828 Reviewed-By: con
-
- 12 Mar, 2010 1 commit
-
-
dt authored
-
- 11 Mar, 2010 1 commit
-
-
dt authored
-
- 10 Mar, 2010 1 commit
-
-
dt authored
This is a big change touching almost all of our .pro file parsing. With this patch we only evaluate once exact for all needs and once greedy for the filelist. That is the qt runconfigurations don't have own evaluaters but reuse the project wide exact evaluation. We reevaluate if the user changes the build directory, the qmake buildconfiguration or the qmake arguments. That is if you open src.pro (or projects.pro) of qt with a shadow build you still don't get all the files, but after correcting the build directory, we reevaluate the .pro files and find all files. So for a suitable definition of fixed, that bug is now fixed. We now get the exact defines of all .pro files instead of all defines for all buildconfigurations. We still don't distinguish in which .pro file a DEFINE is set. So the code model now knows about all the defines set for the given configuration but not for which files it is actually set. Also that includes all DEFINES set in .qmake.cache or the mkspecs. This means all defines from .pro files should now work. The intial loading is still synchronous. I haven't looked into it to deeply, but it seems possible to make it also async.There are probably a few issues which need to be solved fist. Also due to the asynchronous nature of the code, the executable is updated a few seconds after actually changing the build configuration
-
- 05 Mar, 2010 1 commit
-
-
hjk authored
-
- 26 Feb, 2010 2 commits
-
-
Thorbjørn Lindeijer authored
-
Friedemann Kleint authored
Pass around contents as string, saving repeated invocation of FormWindowEditor::contents(). Remove dependency to FormWindowEditor. Reviewed-by:
dt <qtc-committer@nokia.com>
-
- 24 Feb, 2010 3 commits
-
-
Robert Loehning authored
Reviewed-by: Oswald Buddenhagen
-
con authored
Correctly show * Headers * C:\foo instead of * Headers * C:/foo
-
con authored
Doing it creates huge delays, because it resolves to a network path. Also rename FolderNode::setFolderName to FolderNode::setDisplayName, because that's the name of the property. Task-number: QTCREATORBUG-695
-
- 17 Feb, 2010 1 commit
-
-
dt authored
And port the Qt4ProjectManager to use that API for synchronization between editors and the .pro file tree. Reviewed-By: con
-
- 12 Feb, 2010 1 commit
-
-
Friedemann Kleint authored
suppressing the "~QX11PixmapData(): QPixmap objects must be destroyed ..." warning.
-