OSDN Git Service

qt-creator-jp/qt-creator-jp.git
14 years agoRemoved no longer used code
Thorbjørn Lindeijer [Mon, 7 Jun 2010 13:10:36 +0000 (15:10 +0200)]
Removed no longer used code

Reviewed-by: mae
14 years agoFix PropertyAction snippet
mae [Tue, 8 Jun 2010 10:52:07 +0000 (12:52 +0200)]
Fix PropertyAction snippet

Reviewed-by: thorbjorn
14 years agohide includes from within feature files
Oswald Buddenhagen [Mon, 7 Jun 2010 19:25:11 +0000 (21:25 +0200)]
hide includes from within feature files

this fixes the recent appearance of qt_webkit_version.pri in all qt 4.7
based projects.

in fact, the patch does somewhat more: it makes the evaluator provide
the information to the higher layers which is necessary for a truly
hierarchical display of includes. TBD later.

Reviewed-by: dt
Task-number: QTCREATORBUG-1590

14 years agoImproved gradient editor
Jens Bache-Wiig [Mon, 7 Jun 2010 18:52:54 +0000 (20:52 +0200)]
Improved gradient editor

Cosmetic:
I tweaked the colors, added shadows, highlights and introduced
anti-aliasing where suitable.

Behavior:
I now delay emitting the colorChanged signal until you have
released the mouse button on the color picker. This makes
the application feel a lot more responsive.

Reviewed-by: thorbjorn
14 years agoAdd drop shadow to project settings
Jens Bache-Wiig [Fri, 7 May 2010 14:48:33 +0000 (16:48 +0200)]
Add drop shadow to project settings

I added a second drop shadow to make the panel a bit nicer.
This also makes it clearer what the scrollbar does.

Reviewed-by:thorbjorn

14 years agoRevert disabling of qml support (2.0.0 branch)
Kai Koehne [Mon, 7 Jun 2010 11:42:27 +0000 (13:42 +0200)]
Revert disabling of qml support (2.0.0 branch)

This reverts commit 5234c775f765a and 210652912b728e9c.

14 years agoAdjusting size of Combo for selecting COM-port of Symbian device
Robert Loehning [Mon, 7 Jun 2010 15:23:50 +0000 (17:23 +0200)]
Adjusting size of Combo for selecting COM-port of Symbian device

14 years agoMime database: Make diff matching more strict.
Friedemann Kleint [Mon, 7 Jun 2010 13:34:56 +0000 (15:34 +0200)]
Mime database: Make diff matching more strict.

Match at beginning of line.
Task-number: QTCREATORBUG-1526
Reviewed-by: thorbjorn <thorbjorn.lindeijer@nokia.com>
14 years agoSymbian/trk: Fixed handling of partial frames
Robert Loehning [Mon, 7 Jun 2010 12:58:24 +0000 (14:58 +0200)]
Symbian/trk: Fixed handling of partial frames

Initial-patch-by: Shane Kearns <shane.kearns@accenture.com>
14 years agoSymbian/trk: Don't try to dereference references
Robert Loehning [Mon, 7 Jun 2010 12:47:40 +0000 (14:47 +0200)]
Symbian/trk: Don't try to dereference references

14 years agoDirect connection for build parsers
dt [Mon, 7 Jun 2010 13:01:51 +0000 (15:01 +0200)]
Direct connection for build parsers

14 years agoVCS/Diff editors: Set readonly attributes correctly.
Friedemann Kleint [Mon, 7 Jun 2010 12:53:28 +0000 (14:53 +0200)]
VCS/Diff editors: Set readonly attributes correctly.

Make VCS-generated editors read-only, enable editing
when opening a patch.
Make VCS-Editor non-read-only by default, add setter
for "Forced read-only" that makes it a temporary,
read-only file.

Task-number: QTCREATORBUG-1528
Reviewed-by: Thorbjorn Lindeijer <thorbjorn.lindeijer@nokia.com>
14 years agoVersion bump.
con [Mon, 7 Jun 2010 11:45:49 +0000 (13:45 +0200)]
Version bump.

14 years agodoc: adjust description of python dumper classes to reality
hjk [Mon, 7 Jun 2010 10:26:34 +0000 (12:26 +0200)]
doc: adjust description of python dumper classes to reality

14 years agoFixed invalid and unreachable code.
Erik Verbruggen [Mon, 7 Jun 2010 10:16:09 +0000 (12:16 +0200)]
Fixed invalid and unreachable code.

Reviewed-by: holmstedt
14 years agoFix crash on session restore
dt [Thu, 3 Jun 2010 11:55:16 +0000 (13:55 +0200)]
Fix crash on session restore

Do the project restore for each project directly after opening and only
then processEvents(). A project might be in a intermediate state between
opening and restoring.

14 years agoSymbian/Trk: Don't try to download a file without respective flag set.
Robert Loehning [Mon, 7 Jun 2010 09:50:38 +0000 (11:50 +0200)]
Symbian/Trk: Don't try to download a file without respective flag set.

Task-number: QTCREATORBUG-1567
Reviewed-by: Friedemann Kleint
14 years agoAllow F1 on projects mode
Daniel Molkentin [Mon, 7 Jun 2010 09:15:36 +0000 (11:15 +0200)]
Allow F1 on projects mode

Reviewed-By: Leena Miettinen
Reviewed-By: kh1
14 years agoFix session dialog help link
Daniel Molkentin [Mon, 7 Jun 2010 09:15:02 +0000 (11:15 +0200)]
Fix session dialog help link

Reviewed-By: Leena Miettinen
14 years agoFix F1 on welcome page
Daniel Molkentin [Mon, 7 Jun 2010 09:14:19 +0000 (11:14 +0200)]
Fix F1 on welcome page

Reviewed-By: kh1
14 years agoFixed disabled checkbox styles for plugin manager
Lasse Holmstedt [Mon, 7 Jun 2010 08:25:39 +0000 (10:25 +0200)]
Fixed disabled checkbox styles for plugin manager

Reviewed-by: jbache
14 years agodisable outdated and known bad translations
Oswald Buddenhagen [Fri, 4 Jun 2010 17:14:18 +0000 (19:14 +0200)]
disable outdated and known bad translations

14 years agomake the evaluator (even more) thread-safe
Oswald Buddenhagen [Fri, 4 Jun 2010 15:08:27 +0000 (17:08 +0200)]
make the evaluator (even more) thread-safe

the async re-parsing code breaks the assumption that project
parsing only ever starts with a single non-concurrent evaluation
(of the top-level project file), so the population of the base
values in the shared ProFileOption was happily causing crashes.

Reviewed-by: dt
Task-number: QTCREATORBUG-1569

14 years agoadd "static"
Oswald Buddenhagen [Fri, 4 Jun 2010 14:58:23 +0000 (16:58 +0200)]
add "static"

14 years agoDoc - Avoid warnings in doc.
Robert Loehning [Fri, 4 Jun 2010 14:55:47 +0000 (16:55 +0200)]
Doc - Avoid warnings in doc.

Reviewed-by: Leena Miettinen
14 years agoDoc - Update screen shots.
Leena Miettinen [Fri, 4 Jun 2010 13:13:08 +0000 (15:13 +0200)]
Doc - Update screen shots.

14 years agoDoc - Update information about managing sessions and screenshots.
Leena Miettinen [Fri, 4 Jun 2010 13:12:47 +0000 (15:12 +0200)]
Doc - Update information about managing sessions and screenshots.

Reviewed-by: dt
14 years agoDoc - Add note about finding out the Symbian platform version on a device for TRK...
Leena Miettinen [Fri, 4 Jun 2010 09:46:49 +0000 (11:46 +0200)]
Doc - Add note about finding out the Symbian platform version on a device for TRK installation.

Reviewed-by: Tim Jenssen
14 years agoDoc - Add link to platform notes.
Leena Miettinen [Fri, 4 Jun 2010 09:31:22 +0000 (11:31 +0200)]
Doc - Add link to platform notes.

Reviewed-by: olli
Reviewed-by: Niels Weber
14 years agoDoc - Update CMake screenshots and edit related text.
Leena Miettinen [Fri, 4 Jun 2010 09:18:09 +0000 (11:18 +0200)]
Doc - Update CMake screenshots and edit related text.

14 years agoDoc - Update Locator screen shots and modify related text.
Leena Miettinen [Fri, 4 Jun 2010 09:17:22 +0000 (11:17 +0200)]
Doc - Update Locator screen shots and modify related text.

14 years agoRevert "Add missing style sheet"
Daniel Molkentin [Fri, 4 Jun 2010 13:02:25 +0000 (15:02 +0200)]
Revert "Add missing style sheet"

This was adding the generated style sheet

This reverts commit ad3d3dac04600177fa5d62e3773107c2be886cf8.

14 years agoAdd missing style sheet
Daniel Molkentin [Fri, 4 Jun 2010 12:57:05 +0000 (14:57 +0200)]
Add missing style sheet

Reviewed-by: Leena Miettinen
14 years agoFix mobile example link
Daniel Molkentin [Fri, 4 Jun 2010 12:49:25 +0000 (14:49 +0200)]
Fix mobile example link

Task-number: QTCREATORBUG-1571
Reviewed-by: Leena Miettinen
14 years agoFix help being unusable in split mode by using Qt doc offline style
Daniel Molkentin [Fri, 4 Jun 2010 12:40:33 +0000 (14:40 +0200)]
Fix help being unusable in split mode by using Qt doc offline style

Reviewed-by: Leena Miettinen
14 years agoFix cursor positioning for up/down after backspace
mae [Fri, 4 Jun 2010 11:39:31 +0000 (13:39 +0200)]
Fix cursor positioning for up/down after backspace

Reviewed-by: Roberto Raggi
14 years agoMaemo: Adapt qemu path for Harmattan.
ck [Fri, 4 Jun 2010 11:12:47 +0000 (13:12 +0200)]
Maemo: Adapt qemu path for Harmattan.

Reviewed-by: kh1
14 years agoMention QTCREATOR_WITH_QML environment variable in README
Kai Koehne [Fri, 4 Jun 2010 11:09:24 +0000 (13:09 +0200)]
Mention QTCREATOR_WITH_QML environment variable in README

We disabled the visible parts of the Qml support by default for the 2.0
release. Defining QTCREATOR_WITH_QML brings it back.

This hack should be removed as soon as 2.0 is shipped.

Reviewed-by: Daniel Molkentin
14 years agoTwo descriptions in the file new dialog were swapped
Daniel Molkentin [Fri, 4 Jun 2010 10:43:10 +0000 (12:43 +0200)]
Two descriptions in the file new dialog were swapped

No strings translations were harmed in this commit. No kittens either.

Reviewed-by: Alessandro Portale
14 years agofakevim: fix cursor keys on Mac.
hjk [Fri, 4 Jun 2010 10:53:38 +0000 (12:53 +0200)]
fakevim: fix cursor keys on Mac.

On Mac, QKeyEvent::text() returns non-empty strings for cursor keys. This
breaks some of the logic relying on text() being empty for "special" keys.

This is a quick fix to make it usable.

14 years agoQuickDesigner: Fix core test
Kai Koehne [Thu, 3 Jun 2010 10:53:53 +0000 (12:53 +0200)]
QuickDesigner: Fix core test

Since fa640f66db we're always switching to the base state when going
from state A to state B. Fix autotests accordingly.

14 years agoQuickDesigner: Fix compilation of QuickDesigner/core tests
Kai Koehne [Thu, 3 Jun 2010 10:52:09 +0000 (12:52 +0200)]
QuickDesigner: Fix compilation of QuickDesigner/core tests

Commit 112df597dbff removed the definition, but not declaration of
test method.

Reviewed-by: erikv
14 years agofakevim: clear opcount and mvcount on escape
hjk [Fri, 4 Jun 2010 07:07:09 +0000 (09:07 +0200)]
fakevim: clear opcount and mvcount on escape

14 years agoUpdate the doc style from Qt
Daniel Molkentin [Thu, 3 Jun 2010 18:01:19 +0000 (20:01 +0200)]
Update the doc style from Qt

Reviewed-by: Oswald Buddenhagen
14 years agoFix an issue with 'make ts' when CUSTOMWIZARDS_FILES is empty.
Pierre Rossi [Thu, 3 Jun 2010 14:04:27 +0000 (16:04 +0200)]
Fix an issue with 'make ts' when CUSTOMWIZARDS_FILES is empty.

Reviewed-by : Daniel Molkentin
(cherry picked from commit 514b30ecbf105da2c6109470b2a8b2571c22654c,
this was accidentially committed into 2.0.0 first)

14 years agoMake the QmlJSEditor work when Qml support is disabled.
Christian Kamm [Thu, 3 Jun 2010 08:25:17 +0000 (10:25 +0200)]
Make the QmlJSEditor work when Qml support is disabled.

- Enable qmlprojectplugin even if Qml support is disabled.
- But disable its wizards in that case.
- Disable the Qml file wizard if the support is off.

Reviewed-by: Kai Koehne
14 years agoDoc - Update screenshots and some related text.
Leena Miettinen [Wed, 2 Jun 2010 14:47:02 +0000 (16:47 +0200)]
Doc - Update screenshots and some related text.

14 years agoDoc - Hid all information related to Qt Quick by using if defined(qtquick) tags.
Leena Miettinen [Wed, 2 Jun 2010 14:40:17 +0000 (16:40 +0200)]
Doc - Hid all information related to Qt Quick by using if defined(qtquick) tags.

14 years agoSome initialization and removed redundant member variables
Thorbjørn Lindeijer [Wed, 2 Jun 2010 12:51:03 +0000 (14:51 +0200)]
Some initialization and removed redundant member variables

Reviewed-by: kh1
14 years agoInitialize some members in default constructor of FilterEntry
Thorbjørn Lindeijer [Wed, 2 Jun 2010 12:50:15 +0000 (14:50 +0200)]
Initialize some members in default constructor of FilterEntry

14 years agoOnly do line selection in the gutter when the line numbers are visible
Thorbjørn Lindeijer [Wed, 2 Jun 2010 09:20:56 +0000 (11:20 +0200)]
Only do line selection in the gutter when the line numbers are visible

While 2641496a997 removed the marks check entirely, a fix for the same
issue made on the master branch (1263babfc6c96) changed it to check
whether the line numbers are visible. This is more correct.

Reviewed-by: mae
14 years agoFix crash with removing files in symlinked directories
dt [Wed, 2 Jun 2010 09:58:25 +0000 (11:58 +0200)]
Fix crash with removing files in symlinked directories

Reviewed-By: thorbjorn
Task-Nr: QTCREATORBUG-965

14 years agofakevim: synchronize with master
hjk [Wed, 2 Jun 2010 09:09:14 +0000 (11:09 +0200)]
fakevim: synchronize with master

In theory this should have been a backport of the search-related commits
7e8c345a and 46fa3aa7, but they are buried in the middle of the Big
Commandline Reorganization. Just taking everything has lower risk and
is faster.

14 years agoFix MADDE and pkg-config with QtCreator.
kh1 [Tue, 1 Jun 2010 15:38:15 +0000 (17:38 +0200)]
Fix MADDE and pkg-config with QtCreator.

We missed some environment vars that had to be set to make the script
work. NOTE: still does not work on windows, since madbin\pkg-config.cmd
needs to be too.

Reviewed-by: kh
(cherry picked from commit 0017103863bc79f7f12eb60bb9e64812f9ffa22a)
(cherry picked from commit 9f8da8aa193088097ca0f5996cfa184d2476b30a)

14 years agoDoc - Edit build and run instructions for Symbian target
Leena Miettinen [Tue, 1 Jun 2010 15:12:46 +0000 (17:12 +0200)]
Doc - Edit build and run instructions for Symbian target

14 years agoDoc - Change version number to v2.0
Leena Miettinen [Tue, 1 Jun 2010 15:12:13 +0000 (17:12 +0200)]
Doc - Change version number to v2.0

14 years agoDoc - Add information about creating Maemo installation packages. Edit instructions...
Leena Miettinen [Tue, 1 Jun 2010 15:11:49 +0000 (17:11 +0200)]
Doc - Add information about creating Maemo installation packages. Edit instructions for setting up development environment for Maemo. Add not about encrypted keys not being supported.

Reviewed-by: kh
14 years agodebugger: always switch to frame 0 before trying to leave frame
hjk [Tue, 1 Jun 2010 12:35:51 +0000 (14:35 +0200)]
debugger: always switch to frame 0 before trying to leave frame

14 years agoDisable QML runtime wizard for now.
Daniel Molkentin [Tue, 1 Jun 2010 14:23:38 +0000 (16:23 +0200)]
Disable QML runtime wizard for now.

This is unconditional, since we seem to have no way of doing it
conditionally in a clean way.

Reviewed-by: Oswald Buddenhagen
14 years agoFixes in German translation
Robert Loehning [Tue, 1 Jun 2010 14:15:45 +0000 (16:15 +0200)]
Fixes in German translation

Reviewed-by: Oswald Buddenhagen
14 years agoDecided on different use of hyphens in German translation.
Robert Loehning [Tue, 1 Jun 2010 13:08:39 +0000 (15:08 +0200)]
Decided on different use of hyphens in German translation.

Reviewed-by: Oswald Buddenhagen
14 years agoRevert "Mark QML support in Qt Creator 2.0 as preview"
Daniel Molkentin [Tue, 1 Jun 2010 12:39:31 +0000 (14:39 +0200)]
Revert "Mark QML support in Qt Creator 2.0 as preview"

Not needed anymore after the general QML support got deactivated.

This reverts commit 74bd95d3238dca1c6e22fb3faa59b94f590b1ac8.

14 years agodebugger: be nicer in the presence of missing debug information
hjk [Tue, 1 Jun 2010 11:13:27 +0000 (13:13 +0200)]
debugger: be nicer in the presence of missing debug information

14 years agodebugger: switch off reverse debugging tool button if not useful
hjk [Tue, 1 Jun 2010 11:12:03 +0000 (13:12 +0200)]
debugger: switch off reverse debugging tool button if not useful

14 years agoDisable everything QML-related but QMLJSEditor by default
Daniel Molkentin [Tue, 1 Jun 2010 10:51:18 +0000 (12:51 +0200)]
Disable everything QML-related but QMLJSEditor by default

To get QML functionality back, export QTCREATOR_WITH_QML before
running qmake

Reviewed-by: Kai Koehne
14 years agoFixed German translations related to Design mode and Qt Quick.
Robert Loehning [Tue, 1 Jun 2010 11:54:07 +0000 (13:54 +0200)]
Fixed German translations related to Design mode and Qt Quick.

Reviewed-by: Oswald Buddenhagen
14 years agoFixed context help for Qt includes
Thorbjørn Lindeijer [Tue, 1 Jun 2010 11:04:05 +0000 (13:04 +0200)]
Fixed context help for Qt includes

Was broken in 915a07bdbbd5dc65332369a117acde58793a165d, which caused
help links only to be resolved for expressions under the cursor.

Task-number: QTCREATORBUG-159
Reviewed-by: ckamm
14 years agoFixed line select in gutter when text marks are not visible
Thorbjørn Lindeijer [Tue, 1 Jun 2010 10:39:08 +0000 (12:39 +0200)]
Fixed line select in gutter when text marks are not visible

The ProjectFilesEditor used for editing the generic project's files does
not show text marks, which broke the line select in the gutter.

Task-number: QTCREATORBUG-1238
Reviewed-by: mae
14 years agodebugger: make ctrl-click to navigate between input and output pane (much) faster
hjk [Tue, 1 Jun 2010 10:32:52 +0000 (12:32 +0200)]
debugger: make ctrl-click to navigate between input and output pane (much) faster

14 years agoFixed the collapsed block popup to draw on top of cursor/highlights
Thorbjørn Lindeijer [Mon, 31 May 2010 11:48:40 +0000 (13:48 +0200)]
Fixed the collapsed block popup to draw on top of cursor/highlights

The various text editor overlays and the text cursor were being painted
on top of the collapsed block popup.

Reviewed-by: mae
14 years agoDoc - Update screen shots.
Leena Miettinen [Tue, 1 Jun 2010 07:23:52 +0000 (09:23 +0200)]
Doc - Update screen shots.

14 years agoDoc - Add a disclaimer for QDeclarative functions and documentation.
Leena Miettinen [Tue, 1 Jun 2010 07:23:18 +0000 (09:23 +0200)]
Doc - Add a disclaimer for QDeclarative functions and documentation.

14 years agoDoc - Added the firmware version of Nokia N900 software update release 1.2.
Leena Miettinen [Tue, 1 Jun 2010 07:22:44 +0000 (09:22 +0200)]
Doc - Added the firmware version of Nokia N900 software update release 1.2.

14 years agoDoc - Update the mobile example to include instructions for testing on devices.
Leena Miettinen [Tue, 1 Jun 2010 07:21:53 +0000 (09:21 +0200)]
Doc - Update the mobile example to include instructions for testing on devices.

14 years agoOpen .prf files in the pro file editor
Thorbjørn Lindeijer [Mon, 31 May 2010 16:07:34 +0000 (18:07 +0200)]
Open .prf files in the pro file editor

This fixes QTCREATORBUG-1434, but it's more of a workaround than a fix.
The problem was that the file was opened in the diff editor due to a
broken diff detection, and the diff editor in turn has a bug in that
it's kind of halfway read-only.

Reviewed-by: ossi
Task-number: QTCREATORBUG-1434

14 years agoMark QML support in Qt Creator 2.0 as preview
Daniel Molkentin [Mon, 31 May 2010 14:36:48 +0000 (16:36 +0200)]
Mark QML support in Qt Creator 2.0 as preview

Reviewed-by: Kai Koehne
14 years agoFixes rounding errors in block positions.
Erik Verbruggen [Mon, 31 May 2010 13:03:38 +0000 (15:03 +0200)]
Fixes rounding errors in block positions.

Influences the position of the folded-block markers.

Reviewed-by: thorbjorn
14 years agoUpdated Russian translation
Sergey Belyashov [Mon, 31 May 2010 13:04:47 +0000 (15:04 +0200)]
Updated Russian translation

Merge-request: 143
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agoRemove accidentially committed symlinks
Daniel Molkentin [Mon, 31 May 2010 11:56:58 +0000 (13:56 +0200)]
Remove accidentially committed symlinks

14 years agoAdd links for building an example and building a mobile application
Daniel Molkentin [Mon, 31 May 2010 10:08:18 +0000 (12:08 +0200)]
Add links for building an example and building a mobile application

Reviewed-by: Leena Miettinen
14 years agoDo not try to force a version, this heuristic breaks too often.
Daniel Molkentin [Mon, 31 May 2010 10:07:08 +0000 (12:07 +0200)]
Do not try to force a version, this heuristic breaks too often.

Reviewed-by: Leena Miettinen
14 years agoFix doc links to tips of the day, remove some to minimize l10n breakage.
Daniel Molkentin [Mon, 31 May 2010 09:22:24 +0000 (11:22 +0200)]
Fix doc links to tips of the day, remove some to minimize l10n breakage.

Reviewed-by: Leena Miettinen
14 years agoSSH: Fix Net7 crash.
ck [Mon, 31 May 2010 10:12:37 +0000 (12:12 +0200)]
SSH: Fix Net7 crash.

Reviewed-by: kh1
14 years agoFixed default property discovery for custom QML components.
Erik Verbruggen [Mon, 31 May 2010 10:21:12 +0000 (12:21 +0200)]
Fixed default property discovery for custom QML components.

Reviewed-by: Christian Kamm
14 years agoFixed possible crash.
Erik Verbruggen [Mon, 31 May 2010 09:48:18 +0000 (11:48 +0200)]
Fixed possible crash.

Reviewed-by: Christian Kamm
14 years agoRemoved invalid testcase.
Erik Verbruggen [Mon, 31 May 2010 09:17:42 +0000 (11:17 +0200)]
Removed invalid testcase.

Reviewed-by: Christian Kamm
14 years agoDo reparenting only with the control modifier hold
Marco Bubke [Wed, 26 May 2010 16:05:49 +0000 (18:05 +0200)]
Do reparenting only with the control modifier hold

The isContainer flag is now ignored.

Reviewed-by: kkoehne
14 years agoDo not add a menu if the examples cannot be found.
Daniel Molkentin [Mon, 31 May 2010 09:04:00 +0000 (11:04 +0200)]
Do not add a menu if the examples cannot be found.

This is not only a waste of ressources, but breaks a check later on
which tries to load the QML examples from Creators ressource path
if no QML capable Qt version is found (included with Creator packages)

Reviewed-by: dt
14 years agoRemove snippet tooltip when completion list looses focus.
Erik Verbruggen [Mon, 31 May 2010 09:03:59 +0000 (11:03 +0200)]
Remove snippet tooltip when completion list looses focus.

Task-number: QTCREATORBUG-1425
Reviewed-by: Christian Kamm
14 years agoIf you move a new item on the formeditor the item is always in the base
Marco Bubke [Wed, 26 May 2010 14:03:38 +0000 (16:03 +0200)]
If you move a new item on the formeditor the item is always in the base
state

The position is now setted int the base state if you drop a item on the
formeditor and move it around.

Task-Number: BAUHAUS-644
Reviewed-by: kkoehne
14 years agoQuickDesigner: Fix last (?) occurence of 4.6 as version of Qt namespace
Kai Koehne [Thu, 20 May 2010 14:06:31 +0000 (16:06 +0200)]
QuickDesigner: Fix last (?) occurence of 4.6 as version of Qt namespace

Reviewed-by: Thomas Hartmann
14 years agoAdded missing colons in German translation
Robert Loehning [Fri, 28 May 2010 18:48:35 +0000 (20:48 +0200)]
Added missing colons in German translation

Reviewed-by: Alessandro Portale
14 years agoDoc - Add firmware release for Nokia N900 software update 1.2. Update information...
Leena Miettinen [Fri, 28 May 2010 15:11:25 +0000 (17:11 +0200)]
Doc - Add firmware release for Nokia N900 software update 1.2. Update information about Maemo Emulator build target.

14 years agoDoc - Add tutorials on building and running example applications and creating mobile...
Leena Miettinen [Fri, 28 May 2010 15:10:03 +0000 (17:10 +0200)]
Doc - Add tutorials on building and running example applications and creating mobile applications.

Reviewed-by: Christian Kamm
14 years agoDoc - Update the run settings for desktop, Symbian, and Maemo.
Leena Miettinen [Fri, 28 May 2010 15:07:44 +0000 (17:07 +0200)]
Doc - Update the run settings for desktop, Symbian, and Maemo.

14 years agoDoc - In New project wizard, OK button label was changed to Choose.
Leena Miettinen [Fri, 28 May 2010 13:14:22 +0000 (15:14 +0200)]
Doc - In New project wizard, OK button label was changed to Choose.

14 years agoDoc - Fix links to Qt reference docs to point to the latest versions.
Leena Miettinen [Fri, 28 May 2010 13:12:25 +0000 (15:12 +0200)]
Doc - Fix links to Qt reference docs to point to the latest versions.

14 years agoDoc - Fix a bug.
Leena Miettinen [Thu, 27 May 2010 14:13:43 +0000 (16:13 +0200)]
Doc - Fix a bug.

Task-number: QTCREATORBUG-1491

14 years agoQuickDesigner: Make metainfo system robust for different version numbers
Kai Koehne [Thu, 20 May 2010 11:14:08 +0000 (13:14 +0200)]
QuickDesigner: Make metainfo system robust for different version numbers

With the inclusion of org.webkit 1.0 types some common ancestors are shared
with different version numbers. These used to override each other. With this
patch the hierarchy is preserved.

This commit includes several changes by Marco Bubke.

Reviewed-by: Marco Bubke
14 years agoLoad plugins at the beginning of the meta info initializing
Marco Bubke [Tue, 18 May 2010 14:38:09 +0000 (16:38 +0200)]
Load plugins at the beginning of the meta info initializing

Reviewed-by: kkoehne