OSDN Git Service

qt-creator-jp/qt-creator-jp.git
14 years agoalways clear pending command queue before posting shutdown commands
Oswald Buddenhagen [Wed, 11 Nov 2009 11:41:06 +0000 (12:41 +0100)]
always clear pending command queue before posting shutdown commands

this ensures that, among other things, we won't get into this scenario:
- process is running
- interrupt is requested by user
- termination is requested by user
- before interrupt takes effect, the process terminates
=> shutdown is called
=> exit is also queued, as there is already a queued kill
=> nothing happens, as there will never be a stop response

Reviewed-by: hjk
14 years agobe more lenient when matching the stops at _start
Oswald Buddenhagen [Wed, 11 Nov 2009 10:34:16 +0000 (11:34 +0100)]
be more lenient when matching the stops at _start

archer reports stops at tbreaks properly, so checking for an empty stop
reason is no particularly good idea. instead, we simply skip *all* stops
at the entry point, assuming the user will not really set a breakpoint
there anyway.

Reviewed-by: hjk
14 years agoRevert "Code model: Update on changes from the versioning system."
con [Tue, 10 Nov 2009 17:02:42 +0000 (18:02 +0100)]
Revert "Code model: Update on changes from the versioning system."

This reverts commit 7aa24116935249a840e1350a6f8de73bc794fb09.
It breaks the code model updates completely. So reverting this change
until we have the right thing.

Reviewed-by: Roberto Raggi
14 years agoFixed search results handling of font height
Thorbjørn Lindeijer [Tue, 10 Nov 2009 17:12:36 +0000 (18:12 +0100)]
Fixed search results handling of font height

This patch makes sure that the rows that show the file and the rows that
show the results are the same height, to satisfy the uniform row heights
setting.

Also, a layout changed signal is now emitted when the font is changed.
This makes active search results update correctly when the text editor
font is changed.

Reviewed-by: con
14 years agoFixed the direction in which include paths are traversed
Thorbjørn Lindeijer [Tue, 10 Nov 2009 16:33:44 +0000 (17:33 +0100)]
Fixed the direction in which include paths are traversed

Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
14 years agoAdjust qtlibspatcher to new pathnames, change purpose of qpatch
Daniel Molkentin [Mon, 9 Nov 2009 16:25:59 +0000 (17:25 +0100)]
Adjust qtlibspatcher to new pathnames, change purpose of qpatch

qpatch should not try to rename debug symbols, but modify the prl
files instead. This purely replaces forward-slashed pathes. The
pathes in the debugging symbols use backslashes and are not touched.

Reviewed-By: con
14 years agoFix combobox tooltip and lock-button visibility for empty editor views
mae [Tue, 10 Nov 2009 16:10:39 +0000 (17:10 +0100)]
Fix combobox tooltip and lock-button visibility for empty editor views

Reviewed-by: con
14 years agoProvide disambiguations for "unknown" string
Jarek Kobus [Tue, 10 Nov 2009 15:21:49 +0000 (16:21 +0100)]
Provide disambiguations for "unknown" string

14 years agoQuote CDB_PATH.
Tobias Hunger [Mon, 9 Nov 2009 16:09:30 +0000 (17:09 +0100)]
Quote CDB_PATH.

When setting CDB_PATH via the environment.

Reviewed-By: ossi
(cherry picked from commit e288c4c4e7ec3420f2afdd51f8ae3c37a85d57db)

14 years agotrack shared library events even on gdb < 7
Oswald Buddenhagen [Tue, 10 Nov 2009 11:40:23 +0000 (12:40 +0100)]
track shared library events even on gdb < 7

this is to update breakpoint, source and module lists automatically.

also remove the now pointless -break-list on every stop.

Reviewed-by: hjk
14 years agoclear pending stream outputs after handling stop response
Oswald Buddenhagen [Mon, 9 Nov 2009 22:21:18 +0000 (23:21 +0100)]
clear pending stream outputs after handling stop response

any output will most definitely belong to later issued commands, so not
clearing it will only cost cpu or even confuse the evaluation.

Reviewed-by: hjk
14 years agoactively try to obtain PID of non-pthread inferiors with gdb < 7 on linux
Oswald Buddenhagen [Mon, 9 Nov 2009 21:11:56 +0000 (22:11 +0100)]
actively try to obtain PID of non-pthread inferiors with gdb < 7 on linux

Reviewed-by: hjk
14 years agofurther cleanups in less expected shutdown paths
Oswald Buddenhagen [Mon, 9 Nov 2009 21:07:56 +0000 (22:07 +0100)]
further cleanups in less expected shutdown paths

Reviewed-by: hjk
14 years agoL10n: Correct spelling in German translation
Friedemann Kleint [Tue, 10 Nov 2009 11:48:07 +0000 (12:48 +0100)]
L10n: Correct spelling in German translation

Run through spell checker.

Task-number: QTCREATORBUG-256

14 years agoCdb: Fix step out.
Friedemann Kleint [Tue, 10 Nov 2009 09:40:24 +0000 (10:40 +0100)]
Cdb: Fix step out.

Use debugger's 'gu' command instead of temporary breakpoint as a
workaround until it is properly supported by the
SetExecutionStatus() API.

Reviewed-by: hjk
Task-number: QTCREATORBUG-240

14 years agofakevim: fix pasting in visual block mode
hjk [Tue, 10 Nov 2009 09:07:36 +0000 (10:07 +0100)]
fakevim: fix pasting in visual block mode

14 years agofakevim: fix writing of full file in stand-alone mode
hjk [Tue, 10 Nov 2009 08:25:22 +0000 (09:25 +0100)]
fakevim: fix writing of full file in stand-alone mode

14 years agoFix pasting of text that starts with a visually empty line
mae [Mon, 9 Nov 2009 17:53:59 +0000 (18:53 +0100)]
Fix pasting of text that starts with a visually empty line

Creator only indents the first line, and reindents subsequent lines relative
to the indentation change of said first line. This fails when the first line
contains no non-space characters. Solution in this change: skip (visually) empty
lines.

Reviewed-by: thorbjorn
Task-number: QTCREATORBUG-227

14 years agoSome missing defines for Symbian tool chains.
con [Mon, 9 Nov 2009 17:34:38 +0000 (18:34 +0100)]
Some missing defines for Symbian tool chains.

Reviewed-by: dt
14 years agoimplement the standard context menu also for the script editors
mae [Mon, 9 Nov 2009 16:35:20 +0000 (17:35 +0100)]
implement the standard context menu also for the script editors

In addition, clean up the text editor action handling in the qtscript
plugin.

Rev-by: con
14 years agoremove run action in the scripteditor
mae [Mon, 9 Nov 2009 15:47:48 +0000 (16:47 +0100)]
remove run action in the scripteditor

the action is not needed and conflicts with Ctrl+R of the project
manager.

14 years agoDisabling "Undo Project Changes" when not working in a Git repository.
Robert Loehning [Mon, 9 Nov 2009 15:03:32 +0000 (16:03 +0100)]
Disabling "Undo Project Changes" when not working in a Git repository.

Reviewed-by: Friedemann Kleint
14 years agodebugger: use 'set substitute-path'
hjk [Mon, 9 Nov 2009 15:25:24 +0000 (16:25 +0100)]
debugger: use 'set substitute-path'

14 years agoDebugger: Activate code model scope checking, environment var for Trk verbosity.
Friedemann Kleint [Mon, 9 Nov 2009 15:25:40 +0000 (16:25 +0100)]
Debugger: Activate code model scope checking, environment var for Trk verbosity.

Reviewed-by: hjk
14 years agooptimize extra area painting
mae [Mon, 9 Nov 2009 14:59:48 +0000 (15:59 +0100)]
optimize extra area painting

14 years agoFix auto-indentation when pasting into a selection
mae [Mon, 9 Nov 2009 14:55:47 +0000 (15:55 +0100)]
Fix auto-indentation when pasting into a selection

14 years agoCode model: Update on changes from the versioning system.
Friedemann Kleint [Mon, 9 Nov 2009 14:57:56 +0000 (15:57 +0100)]
Code model: Update on changes from the versioning system.

Add state logic to CppCodeModelManagerInterface, making it aware whether
an indexer is running, protect the update methods from another
invocation while running. Add changed signals to IVersionControl and
VCSManager and wire them to the update methods. Add a menu action for
manually updating.

Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Reviewed-by: con <qtc-committer@nokia.com>
14 years agoEnable run configurations for projects that do not have a build step.
Kai Koehne [Mon, 9 Nov 2009 13:44:47 +0000 (14:44 +0100)]
Enable run configurations for projects that do not have a build step.

Reviewed-by: dt
14 years agoSymbian SDK path should be editable for Qt in PATH.
con [Wed, 4 Nov 2009 18:14:17 +0000 (19:14 +0100)]
Symbian SDK path should be editable for Qt in PATH.

Reviewed-by: Robert Loehning
14 years agoCode model: Fix Windows issues (duplicate matches).
Friedemann Kleint [Mon, 9 Nov 2009 12:53:28 +0000 (13:53 +0100)]
Code model: Fix Windows issues (duplicate matches).

Ensure the code model receives file names with clean paths ('/')
and fix paths in the relevant places of the code model. Pass on clean
paths from Cpp reference find and display them correctly in the search
window tooltip.

Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
14 years agoTypo fix in German translation
Robert Loehning [Mon, 9 Nov 2009 12:04:28 +0000 (13:04 +0100)]
Typo fix in German translation

Reviewed-by: hjk
14 years agoLibrary wizard: Create export symbol correctly.
Friedemann Kleint [Mon, 9 Nov 2009 11:28:22 +0000 (12:28 +0100)]
Library wizard: Create export symbol correctly.

...if the directory contains a '-'. Export a function to generate
identifier correctly and use that.

Reviewed-by: con <qtc-committer@nokia.com>
Task-number: QTCREATORBUG-248

14 years agoactually use pixmap cache for toolbar drawing if requested to do so
hjk [Mon, 9 Nov 2009 10:47:05 +0000 (11:47 +0100)]
actually use pixmap cache for toolbar drawing if requested to do so

14 years agoDo never offer signature autocompletion for constructor calls.
Christian Kamm [Mon, 9 Nov 2009 09:10:31 +0000 (10:10 +0100)]
Do never offer signature autocompletion for constructor calls.

They should always use the function parameter tooltip.

This fixes a bug where you were offered completion for
C foo( -> C foo(int x)
if C had a constructor taking int x.

Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
14 years agoDebugger/Windows: Register debugger properly if there is no default.
Friedemann Kleint [Mon, 9 Nov 2009 08:00:59 +0000 (09:00 +0100)]
Debugger/Windows: Register debugger properly if there is no default.

Some systems do not have a default debugger registered. Do not fail
on reading the missing key and disable "Default Debugger" in that case.

Initial-patch-by: Robert Loehning <robert.loehning@nokia.com>
Reviewed-by: Robert Loehning <robert.loehning@nokia.com>
14 years agofix some documentation glitches
hjk [Fri, 6 Nov 2009 09:46:24 +0000 (10:46 +0100)]
fix some documentation glitches

14 years agodebugger: fix display of breakpoint markers in plugins
hjk [Fri, 6 Nov 2009 09:14:28 +0000 (10:14 +0100)]
debugger: fix display of breakpoint markers in plugins

14 years agodebugger: simplify QList dumper
hjk [Thu, 5 Nov 2009 13:46:38 +0000 (14:46 +0100)]
debugger: simplify QList dumper

14 years agodebugger: add autotest for QList<int *> dumper
hjk [Thu, 5 Nov 2009 07:25:25 +0000 (08:25 +0100)]
debugger: add autotest for QList<int *> dumper

14 years agoDon't show the warning message (about the dangerous world of code refactoring) if...
Roberto Raggi [Thu, 5 Nov 2009 15:50:24 +0000 (16:50 +0100)]
Don't show the warning message (about the dangerous world of code refactoring) if the user pressed the "Yes, I know I am doing" button.

14 years agoQt version tooltip: Display configuration correctly.
Friedemann Kleint [Thu, 5 Nov 2009 15:40:27 +0000 (16:40 +0100)]
Qt version tooltip: Display configuration correctly.
Reviewed-by: dt <qtc-committer@nokia.com>
14 years agoa process scheduled for kill can exit by itself as well ...
Oswald Buddenhagen [Thu, 5 Nov 2009 15:19:59 +0000 (16:19 +0100)]
a process scheduled for kill can exit by itself as well ...

14 years agoFixed a few focus issues we had in the search result window (in replace mode).
Roberto Raggi [Thu, 5 Nov 2009 14:45:37 +0000 (15:45 +0100)]
Fixed a few focus issues we had in the search result window (in replace mode).

Delayed the call to selectAll()

14 years agoi18n: Complete German translation and correct tips on Welcome Page.
Friedemann Kleint [Thu, 5 Nov 2009 14:43:46 +0000 (15:43 +0100)]
i18n: Complete German translation and correct tips on Welcome Page.
Reviewed-by: Robert Loehning <robert.loehning@nokia.com>
14 years agoPatch multimedia lib, remove version qualifier from qtcore on linux
Daniel Molkentin [Thu, 5 Nov 2009 14:08:29 +0000 (15:08 +0100)]
Patch multimedia lib, remove version qualifier from qtcore on linux

14 years agoKnown issues: installer does not prepare qtcreator.ini for every user
Daniel Molkentin [Mon, 2 Nov 2009 17:27:39 +0000 (18:27 +0100)]
Known issues: installer does not prepare qtcreator.ini for every user

Reviewed-By: con
14 years agoCorrect case for translations of "MinGW"
Robert Loehning [Thu, 5 Nov 2009 13:05:21 +0000 (14:05 +0100)]
Correct case for translations of "MinGW"

Reviewed-by: Oswald Buddenhagen
14 years agoIntroduced CppTools::CppModelManagerInterface::updateModifiedFiles().
Roberto Raggi [Thu, 5 Nov 2009 11:34:02 +0000 (12:34 +0100)]
Introduced CppTools::CppModelManagerInterface::updateModifiedFiles().

updateModifiedFiles ckecks the timestamp and reparses all the modified files in the current snapshot.

14 years agoDebugger: Fix dumper tests for 64-bit Linux.
ck [Wed, 28 Oct 2009 08:23:57 +0000 (09:23 +0100)]
Debugger: Fix dumper tests for 64-bit Linux.

Resolved padding issue for QMapNode.

Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
14 years agoDebugger autotests: Compile Windows/gcc 4.4.1, skip tst_gdb
Friedemann Kleint [Thu, 5 Nov 2009 09:05:46 +0000 (10:05 +0100)]
Debugger autotests: Compile Windows/gcc 4.4.1, skip tst_gdb

when not applicable.

14 years agoFixes crashes
dt [Wed, 4 Nov 2009 18:41:37 +0000 (19:41 +0100)]
Fixes crashes

14 years agoRevert "revert the latest leak "fix"."
dt [Wed, 4 Nov 2009 18:26:35 +0000 (19:26 +0100)]
Revert "revert the latest leak "fix"."

That fix was correct.
This reverts commit 239e0418caeb7f97c217a7867f45970e07366401.

14 years agoFix memory leaking a context per output window
dt [Wed, 4 Nov 2009 17:59:31 +0000 (18:59 +0100)]
Fix memory leaking a context per output window

14 years agoFix leaking PropertiesPanels
dt [Wed, 4 Nov 2009 17:50:37 +0000 (18:50 +0100)]
Fix leaking PropertiesPanels

14 years agoFixed dereferencing NULL-pointer.
Robert Loehning [Wed, 4 Nov 2009 18:30:27 +0000 (19:30 +0100)]
Fixed dereferencing NULL-pointer.

Reviewed-by: dt
14 years agoFix compile for -no-webkit
dt [Wed, 4 Nov 2009 17:34:38 +0000 (18:34 +0100)]
Fix compile for -no-webkit

14 years agoPrevent global replace before search is done.
con [Wed, 4 Nov 2009 17:10:03 +0000 (18:10 +0100)]
Prevent global replace before search is done.

Also fix focusing issues of the replace line edit.

Reviewed-by: Roberto Raggi
14 years agorevert the latest leak "fix".
hjk [Wed, 4 Nov 2009 17:35:52 +0000 (18:35 +0100)]
revert the latest leak "fix".

14 years agodebugger: fix item count for QLists with more than 1000 elements
hjk [Wed, 4 Nov 2009 17:30:27 +0000 (18:30 +0100)]
debugger: fix item count for QLists with more than 1000 elements

Reviewed-by: Oswald Buddenhagen
14 years agoReplace . with -> only when the base expression has type pointer to class.
Roberto Raggi [Wed, 4 Nov 2009 17:21:35 +0000 (18:21 +0100)]
Replace . with -> only when the base expression has type pointer to class.

Reviewed-by: Thorbjørn Lindeijer
14 years agodebugger: fix issue where child items oeverwrite parent items in the watch model.
hjk [Wed, 4 Nov 2009 16:44:11 +0000 (17:44 +0100)]
debugger: fix issue where child items oeverwrite parent items in the watch model.

The real problems is somewhere in the watch model. This patch does
only prevent the wrong (and unneeded) questions to be asked in the first
place. It does not fix the wrong handling of the answer in the watch model.

Reviewed-by: Oswald Buddenhagen
14 years agodebugger: don't leak...
hjk [Wed, 4 Nov 2009 14:19:54 +0000 (15:19 +0100)]
debugger: don't leak...

14 years agoResolve fully qualified names.
Roberto Raggi [Wed, 4 Nov 2009 16:38:17 +0000 (17:38 +0100)]
Resolve fully qualified names.

14 years agoFix memory leak in welcome plugin and right hand side pane
dt [Wed, 4 Nov 2009 15:06:38 +0000 (16:06 +0100)]
Fix memory leak in welcome plugin and right hand side pane

14 years agoFix memory leak in QtVersionManager
dt [Wed, 4 Nov 2009 10:30:39 +0000 (11:30 +0100)]
Fix memory leak in QtVersionManager

14 years agoDebugger/various plugins: Fix memory leaks.
Friedemann Kleint [Wed, 4 Nov 2009 16:11:35 +0000 (17:11 +0100)]
Debugger/various plugins: Fix memory leaks.
Reviewed-by: hjk <qtc-committer@nokia.com>
Reviewed-by: dt <qtc-committer@nokia.com>
14 years agoSet the parent object of CppFindReferences.
Roberto Raggi [Wed, 4 Nov 2009 13:16:59 +0000 (14:16 +0100)]
Set the parent object of CppFindReferences.

14 years agoDisable the find usage and symbol renaming while indexing is done.
con [Wed, 4 Nov 2009 15:07:42 +0000 (16:07 +0100)]
Disable the find usage and symbol renaming while indexing is done.

Reviewed-by: Roberto Raggi
14 years agoWinGuiProcess: Fix hang if binary cannot be found.
Friedemann Kleint [Wed, 4 Nov 2009 14:19:02 +0000 (15:19 +0100)]
WinGuiProcess: Fix hang if binary cannot be found.

..occurring in conjunction with custom run configuration
and S60 emulator. Ensure all handles are closed even
if start attempt failed.
Reviewed-by: con <qtc-committer@nokia.com>
14 years agodebugger: all leaks must be fixed
hjk [Wed, 4 Nov 2009 13:39:21 +0000 (14:39 +0100)]
debugger: all leaks must be fixed

Reviewed-by: dt
14 years agodebugger: work on dumper autotests.
hjk [Wed, 4 Nov 2009 13:07:18 +0000 (14:07 +0100)]
debugger: work on dumper autotests.

14 years agodebugger: add manual test case for two-dimensional C array
hjk [Wed, 4 Nov 2009 08:21:49 +0000 (09:21 +0100)]
debugger: add manual test case for two-dimensional C array

14 years agodebugger: make switching between debuggers easier for testing purposes
hjk [Tue, 3 Nov 2009 15:10:03 +0000 (16:10 +0100)]
debugger: make switching between debuggers easier for testing purposes

14 years agoProjectexplorer: Fix hang when launching external explorer for folder.
Friedemann Kleint [Wed, 4 Nov 2009 13:12:56 +0000 (14:12 +0100)]
Projectexplorer: Fix hang when launching external explorer for folder.
Task-number: QTCREATORBUG-221

Use QProcess::startDetached.
Reviewed-by: con <qtc-committer@nokia.com>
14 years agoParse ASM specifiers after declarators.
Roberto Raggi [Wed, 4 Nov 2009 12:47:06 +0000 (13:47 +0100)]
Parse ASM specifiers after declarators.

Again, a gcc extension used in the OSX system headers.

14 years agoAccepts `$' as valid character when recognizing identifiers.
Roberto Raggi [Wed, 4 Nov 2009 12:45:49 +0000 (13:45 +0100)]
Accepts `$' as valid character when recognizing identifiers.

Added support for yet another gcc extension that is using in OSX 10.6 system headers.

14 years agoRevert "This ordering for include directories is more correct"
Roberto Raggi [Wed, 4 Nov 2009 11:51:02 +0000 (12:51 +0100)]
Revert "This ordering for include directories is more correct"

This reverts commit 9891267a92d5dc1f367556986ce8c279ec6a6dc8.

14 years agoParanoia check. Skip the change if we have another change with the same offset.
Roberto Raggi [Wed, 4 Nov 2009 11:02:19 +0000 (12:02 +0100)]
Paranoia check. Skip the change if we have another change with the same offset.

14 years agofix redrawing issue with horizontal scrolling and line wrapping column
mae [Wed, 4 Nov 2009 11:41:41 +0000 (12:41 +0100)]
fix redrawing issue with horizontal scrolling and line wrapping column

revby: Oswald Buddenhagen

14 years agoDon't process already visited nodes.
Roberto Raggi [Wed, 4 Nov 2009 11:02:19 +0000 (12:02 +0100)]
Don't process already visited nodes.

14 years agofix attaching to core
Oswald Buddenhagen [Wed, 4 Nov 2009 09:31:59 +0000 (10:31 +0100)]
fix attaching to core

InferiorUnrunnable is equivalent to InferiorStopped as far as NeedsStop
commands are concerned.

Reviewed-by: hjk
14 years agodo not create invalid help files
Oswald Buddenhagen [Mon, 2 Nov 2009 20:01:49 +0000 (21:01 +0100)]
do not create invalid help files

afaik, this was a bizarre hack to make the install target work, so fix
it properly instead.

14 years agoadd timeout handling for gdb commands
Oswald Buddenhagen [Tue, 3 Nov 2009 13:56:27 +0000 (14:56 +0100)]
add timeout handling for gdb commands

sometimes, commands simply don't return ...

the debug message doesn't say anything which couldn't be found in the
log already, but that way it is more convenient.

and we kill gdb to get creator back to a defined state.

Reviewed-by: hjk
14 years agoMake accidentally activating the link navigation more difficult
Thorbjørn Lindeijer [Tue, 3 Nov 2009 13:29:49 +0000 (14:29 +0100)]
Make accidentally activating the link navigation more difficult

Only checking Ctrl and link availability on mouse release was triggering
the navigation too easily.

Now you have to press and release the mouse on the same link, having
Ctrl pressed all the time. In addition, when changing the text selection
the link is also cleared.

Task-number: QTCREATORBUG-134
Reviewed-by: con
14 years agoInitialize m_engine to zero.
dt [Tue, 3 Nov 2009 16:00:18 +0000 (17:00 +0100)]
Initialize m_engine to zero.
Reviewed-by: hjk <qtc-committer@nokia.com>
14 years agoDon't crash on adding a runconfiguration
dt [Tue, 3 Nov 2009 15:23:40 +0000 (16:23 +0100)]
Don't crash on adding a runconfiguration

The combobox now emits a currentIndexChanged(-1) signal if we reset the
base model.
Reviewed-by: con <qtc-committer@nokia.com>
14 years agoDebugger: Fix LD_PRELOAD on Mac.
Friedemann Kleint [Tue, 3 Nov 2009 15:02:16 +0000 (16:02 +0100)]
Debugger: Fix LD_PRELOAD on Mac.
Reviewed-by: hjk <qtc-committer@nokia.com>
14 years agoShow a cancel button in the opening cmake projects wizard.
dt [Tue, 3 Nov 2009 13:37:23 +0000 (14:37 +0100)]
Show a cancel button in the opening cmake projects wizard.

Allows the user to change his mind. :)
Reviewed-by: Friedemann Kleint <qtc-committer@nokia.com>
14 years agofakevim: remove workaround for Qt <= 4.5. Creator needs 4.6 anyway
hjk [Tue, 3 Nov 2009 13:25:25 +0000 (14:25 +0100)]
fakevim: remove workaround for Qt <= 4.5. Creator needs 4.6 anyway

14 years agofakevim: fix undo() behaviour
hjk [Tue, 3 Nov 2009 13:10:45 +0000 (14:10 +0100)]
fakevim: fix undo() behaviour

This is the finalization of the change started with 3c0ca8c18881.
Fakevim undo was broken due to behavioural changes in QTextDocument
in Qt 4.6. Now that QTextDocument has gotten new accessors to the
needed (and previously available) data we can use it.

14 years agodebugger: work on autotests
hjk [Tue, 3 Nov 2009 13:05:57 +0000 (14:05 +0100)]
debugger: work on autotests

14 years agoAlso save before running if Project::hasNoBuildSettings
dt [Tue, 3 Nov 2009 13:12:15 +0000 (14:12 +0100)]
Also save before running if Project::hasNoBuildSettings

Fixes a QML bug
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
14 years agoLet one 'reset' the qmlviewer path in the config page by
Kai Koehne [Tue, 3 Nov 2009 11:07:41 +0000 (12:07 +0100)]
Let one 'reset' the qmlviewer path in the config page by
just emptying it.

Discussed with Nigel.

14 years agoDebugger: Use LD_PRELOAD to load debugging helper.
Friedemann Kleint [Tue, 3 Nov 2009 13:06:21 +0000 (14:06 +0100)]
Debugger: Use LD_PRELOAD to load debugging helper.

on UNIX. Either set the LD_PRELOAD environment variable
using a gdb command or have the TermGdbAdapter set the
variable for the debuggee. For the remote adapter,
switch on toolchain. dlopen() is a fallback for
platforms where it is not supported and attaching
to running processes. Fixes a crash with gdb 7.0
(and spurious gdb 6.8 crashes with dlopen()).
Reviewed-by: hjk <qtc-committer@nokia.com>
14 years agoFixed index out of range.
Robert Loehning [Mon, 2 Nov 2009 18:14:40 +0000 (19:14 +0100)]
Fixed index out of range.

Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
14 years agoAdded Slovenian translation
Jure Repinc [Mon, 2 Nov 2009 16:16:14 +0000 (17:16 +0100)]
Added Slovenian translation

Merge-request: 1978
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agofix shutdowns triggered while inferior is not stopped
Oswald Buddenhagen [Mon, 2 Nov 2009 15:59:57 +0000 (16:59 +0100)]
fix shutdowns triggered while inferior is not stopped

Reviewed-by: hjk
14 years agoflush queued commands on non-fatal continuation failures
Oswald Buddenhagen [Mon, 2 Nov 2009 15:40:16 +0000 (16:40 +0100)]
flush queued commands on non-fatal continuation failures

Reviewed-By: hjk
14 years agosynchronize temporary interruption with running-requests
Oswald Buddenhagen [Mon, 2 Nov 2009 13:40:54 +0000 (14:40 +0100)]
synchronize temporary interruption with running-requests

Reviewed-by: hjk
14 years agothe process is already dead when hitting workaround 4
Oswald Buddenhagen [Mon, 2 Nov 2009 10:40:42 +0000 (11:40 +0100)]
the process is already dead when hitting workaround 4

Reviewed-by: hjk