Commit Graph

88653 Commits

Author SHA1 Message Date
Friedemann Kleint
e4a7792d6e Options dialog: Further polishing.
Task-number: QTCREATOR-26
2009-11-20 16:55:23 +01:00
Thorbjørn Lindeijer
2e82c14abc Fixed function argument widget text color in dark themes
By setting the window and button text colors to the tool tip text color,
since a tool tip background is drawn.

Task-number: QTCREATORBUG-322
2009-11-20 16:40:30 +01:00
con
ad4c227ca4 Make context help work also when switching user interface language.
Also avoids errors because of users messing with the "Unfiltered"
filter, which is used for e.g. context help.
The strategy now is to remove the "Unfiltered" filter from previous runs
(possibly in a different language), and re-register a fresh filter with
the name in the current language, and guaranteed to not filter out
anything.

Reviewed-by: kh1
2009-11-20 16:02:52 +01:00
Friedemann Kleint
a9fa7c71fa S60: Detect Device SDK from paths if registry entry is missing.
Display the error in a label of the preferences page.
Reviewed-by: con
2009-11-20 15:58:24 +01:00
Christian Kamm
bc92b63ee1 QuickFix: Add braces to a single-line if statement. 2009-11-20 15:24:46 +01:00
Roberto Raggi
2d608342fd Use a `normal' qmap instead of the qmultimap. 2009-11-20 15:19:20 +01:00
Roberto Raggi
e292554067 Fixed possible crash when using tab to complete (Qt/Carbon only).
Task-number: QTCREATORBUG-199
Reviewed-by: thorbjorn
2009-11-20 15:09:39 +01:00
Alessandro Portale
20b209858b Improved line wrapping of plugin license texts.
The paragraphs are now long lines that get wrapped by the text browser.

Reviewed-by: TrustMe

	modified:   src/plugins/bineditor/BinEditor.pluginspec
	modified:   src/plugins/bookmarks/Bookmarks.pluginspec
	modified:   src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec
	modified:   src/plugins/coreplugin/Core.pluginspec
	modified:   src/plugins/cpaster/CodePaster.pluginspec
	modified:   src/plugins/cppeditor/CppEditor.pluginspec
	modified:   src/plugins/cpptools/CppTools.pluginspec
	modified:   src/plugins/cvs/CVS.pluginspec
	modified:   src/plugins/debugger/Debugger.pluginspec
	modified:   src/plugins/designer/Designer.pluginspec
	modified:   src/plugins/fakevim/FakeVim.pluginspec
	modified:   src/plugins/find/Find.pluginspec
	modified:   src/plugins/genericprojectmanager/GenericProjectManager.pluginspec
	modified:   src/plugins/git/ScmGit.pluginspec
	modified:   src/plugins/helloworld/HelloWorld.pluginspec
	modified:   src/plugins/help/Help.pluginspec
	modified:   src/plugins/locator/Locator.pluginspec
	modified:   src/plugins/mercurial/Mercurial.pluginspec
	modified:   src/plugins/perforce/Perforce.pluginspec
	modified:   src/plugins/projectexplorer/ProjectExplorer.pluginspec
	modified:   src/plugins/qmleditor/QmlEditor.pluginspec
	modified:   src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec
	modified:   src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec
	modified:   src/plugins/qtscripteditor/QtScriptEditor.pluginspec
	modified:   src/plugins/regexp/RegExp.pluginspec
	modified:   src/plugins/resourceeditor/ResourceEditor.pluginspec
	modified:   src/plugins/snippets/Snippets.pluginspec
	modified:   src/plugins/subversion/Subversion.pluginspec
	modified:   src/plugins/texteditor/TextEditor.pluginspec
	modified:   src/plugins/vcsbase/VCSBase.pluginspec
	modified:   src/plugins/welcome/Welcome.pluginspec
2009-11-20 14:32:42 +01:00
Alessandro Portale
ee30a1fbf4 Indentation: Tabs -> whitespaces
modified:   src/plugins/cvs/CVS.pluginspec
	modified:   src/plugins/git/ScmGit.pluginspec
	modified:   src/plugins/perforce/Perforce.pluginspec
2009-11-20 14:32:41 +01:00
Jens Bache-Wiig
a4d5bdee61 Fixes: Fix incorrectly streched border image for line edits
Task:     QTCREATORBUG-326
Details:
The image simply needs bigger margins to avoid the shadow
beeing streched too far.
2009-11-20 13:50:40 +01:00
Roberto Raggi
ea40dfbf7e Cleanup 2009-11-20 13:08:27 +01:00
Friedemann Kleint
03d0b577fd First polish of options dialog find: Set item flags, match on category.
Strip buddy markers.
2009-11-20 12:56:49 +01:00
Roberto Raggi
1d9af6cc7d Removed the extra check for || when used together with &&. 2009-11-20 11:05:18 +01:00
Roberto Raggi
e825cbfdc9 Active the `split declaration' quickfix op only the declaration has a valid semicolon. 2009-11-20 10:50:19 +01:00
Roberto Raggi
9903b0aedb Added quickfix operation to split simple-declarations. E.g. int a, b; will be replaced with int a; int b;. 2009-11-20 10:47:19 +01:00
hjk
e2cfc0958e debugger: mark 'Null' QStrings() in pretty-printers 2009-11-20 10:11:21 +01:00
Daniel Molkentin
40518ac11c gdb: On Windows, also substitute the debugging path for non-sdk Qt.
Reviewed-By: hjk
2009-11-19 19:45:14 +01:00
dt
3e68d1a701 Fix RunConfigurations showing only enabled RunConfigurations 2009-11-19 18:54:36 +01:00
Friedemann Kleint
9a7729ebdc Preferences: Set up infrastructure for a filter widget.
Add filter widget, use a special QSortFilterProxyModel +
StandardItemModel, add a slot selecting the page.
Add matches() to IOptionsPage.
2009-11-19 17:47:13 +01:00
dt
d49dc172ad Compile 2009-11-19 17:46:04 +01:00
dt
651eb33823 Remove a unecessary QDir::toNativeSeparators()
Reviewed-by: Tobias Hunger <qt-info@nokia.com>
2009-11-19 17:46:04 +01:00
Roberto Raggi
3bd33607af QuickFix: move declaration out of if statement condition.
Done-with: ckamm
2009-11-19 17:36:45 +01:00
Thorbjørn Lindeijer
69969bef43 Fixed possible crash on constructor completion
When constructor completion was attempted on a base class specified in a
class declaration, a null pointer reference would occur.

Task-number: QTCREATORBUG-321
Reviewed-by: Christian Kamm <christian.d.kamm@nokia.com>
2009-11-19 17:29:37 +01:00
dt
6f0b4777d9 Merge commit 'origin/master' 2009-11-19 17:15:35 +01:00
Roberto Raggi
eec54d4089 Improve if condition splitting.
Done-with: ckamm
2009-11-19 17:07:20 +01:00
Tobias Hunger
e106e218d8 Do not mark env vars as modified if not needed.
* Ignore steData calls that do not actually change any data
   in the EnvironmentEditorModel. This prevents all variables
   touched from getting marked up as changed.

Reviewed-By: con
2009-11-19 16:55:27 +01:00
Tobias Hunger
f09cb01f46 Make sure we export native directory separators.
* Export QTDIR and path to Qt binaries with native
   directory separators.

Reviewed-By: con
2009-11-19 16:50:58 +01:00
Tobias Hunger
1a5c8a1df7 Support symbian-sbsv2 mkspecs
* Handle SBSv2 by doing the same as for the older ABLD
   build system.

Reviewed-By: con
2009-11-19 16:37:13 +01:00
dt
0d162be22f Make BuildSteps one instance per BuildConfiguration
Enables users to change which buildsteps get run per buildconfiguration.
Some further tweaks are probably necessary. This is a rather big
change, though it should work. :)
2009-11-19 16:36:48 +01:00
dt
ab038986a2 Compile 2009-11-19 16:35:20 +01:00
dt
fa0be746a9 Make Maemo compile again.
Conflicts:

	src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp
	src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.h
2009-11-19 16:35:19 +01:00
dt
72fe54db77 Remove value(name) and setValue(name, value) from BuildStep 2009-11-19 16:35:19 +01:00
dt
0fa60aa3d8 Use QFlags<> for QmakeBuildConfig that removes a few casts. 2009-11-19 16:35:19 +01:00
dt
0d648636fa The code never did anything anyway, also the disconnect is not necessary
Since the runconfiguration gets deleted anyway.
2009-11-19 16:35:19 +01:00
dt
f383e27c6d Fix memory leaks :) 2009-11-19 16:35:19 +01:00
dt
10a0647ddf Remove QSharedPointer<> for RunConfiguration 2009-11-19 16:35:18 +01:00
Tobias Hunger
b4e2db59bc Update S60 device mixin
* Update list of system pathes.
 * Consistently use / as directory separator internally.

Reviewed-By: con
2009-11-19 16:35:04 +01:00
hjk
1d0758d8b1 reset 'busy' cursor if editor could not be created 2009-11-19 09:52:34 +01:00
hjk
4461ec2ef5 debugger: prevent crash when trying to view memory if bin editor is
unavailable
2009-11-19 09:51:21 +01:00
hjk
aa3b274a93 fakevim: fix undo of 'J' 2009-11-19 08:51:18 +01:00
Robert Loehning
bfb01f4162 Fixed translation typo.
Reviewed-by: Maurice Kalinowski
2009-11-18 19:46:10 +01:00
axasia
fbede04f67 Update japanese translation.
Merge-request: 2140
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2009-11-18 18:14:07 +01:00
Jonathan Courtois
aaa06753ff Validating French translations
Merge-request: 2131
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2009-11-18 18:10:59 +01:00
Oswald Buddenhagen
190bace234 French translations
by Ben & Pierre
2009-11-18 18:10:51 +01:00
Tobias Hunger
8adef29bf6 Use S60 mixin in winscwtoolchain.
* Use S60 mixin in winscw toolchain. Get rid of settings duplicated
   into the winscwtoolchain.

Reviewed-By: dt
2009-11-18 17:33:16 +01:00
Roberto Raggi
040ce975f4 Split or conditions. 2009-11-18 17:31:27 +01:00
Roberto Raggi
a3580db7bc Split if statements. 2009-11-18 17:31:27 +01:00
Roberto Raggi
f3f5ce5e04 Removed HelloQuickFix. 2009-11-18 17:31:27 +01:00
Jonathan Courtois
6faadc94ed French translations
Merge-request: 2131
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2009-11-18 17:17:42 +01:00
Florent Renault
ec7ad5e71a French translations
Merge-request: 2131
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2009-11-18 17:17:42 +01:00