OSDN Git Service

qt-creator-jp/qt-creator-jp.git
14 years agoUpdate Polish translation
Jarek Kobus [Fri, 11 Dec 2009 13:26:00 +0000 (14:26 +0100)]
Update Polish translation

14 years agoAdding files for generic project get the right directory now.
dt [Wed, 9 Dec 2009 13:43:13 +0000 (14:43 +0100)]
Adding files for generic project get the right directory now.

For folder nodes.

Task-number: QTCREATORBUG-374
Reviewed-by: Thorbjorn
14 years ago"Grayout" the background of the output window on re-run configuration
Pierre Rossi [Tue, 8 Dec 2009 20:13:58 +0000 (21:13 +0100)]
"Grayout" the background of the output window on re-run configuration

Maybe we'll need to add an option to toggle that on, or tweak the
blending (50:50 at the moment)

Reviewed-by: dt
14 years agoRelax the selection requirement for indent/unindent selection
Thorbjørn Lindeijer [Mon, 7 Dec 2009 15:43:11 +0000 (16:43 +0100)]
Relax the selection requirement for indent/unindent selection

Before, the selection was required to span multiple lines. Now, any
selection will trigger the line indenting functionality of
Tab/Shift+Tab. This should lead to less surprises.

Also, Shift+Tab will now always unindent the current line, even if there
is no selection, since there is nothing else sensible for this shortcut
to do.

Task-number: QTCREATORBUG-414
Reviewed-by: mae
14 years agoFixed: Template argument marked as "not a type name" when defined as primitive type
Roberto Raggi [Tue, 8 Dec 2009 11:57:41 +0000 (12:57 +0100)]
Fixed: Template argument marked as "not a type name" when defined as primitive type

Task-number: QTCREATORBUG-384
Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
14 years agoFixed completion when a typedef symbol is used as class name
Roberto Raggi [Tue, 8 Dec 2009 10:05:57 +0000 (11:05 +0100)]
Fixed completion when a typedef symbol is used as class name

For example std::string, which is a typedef of std::basic_string.

Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
14 years agoFixed autoindent when using tabs instead of spaces
Thorbjørn Lindeijer [Mon, 7 Dec 2009 17:26:47 +0000 (18:26 +0100)]
Fixed autoindent when using tabs instead of spaces

Several special cases that are handled by the CPPEditor did not take
into account code that was using tab characters.

Task-number: QTCREATORBUG-292
Reviewed-by: Roberto Raggi
14 years agoplug memory leak
Oswald Buddenhagen [Fri, 4 Dec 2009 20:18:30 +0000 (21:18 +0100)]
plug memory leak

14 years agomake the "make...entering..." regexp accept mingw32-make as well
Oswald Buddenhagen [Fri, 4 Dec 2009 12:45:59 +0000 (13:45 +0100)]
make the "make...entering..." regexp accept mingw32-make as well

patch by Robert de Vries

14 years agoUpdated supported platforms.
con [Thu, 3 Dec 2009 17:06:54 +0000 (18:06 +0100)]
Updated supported platforms.

14 years agoFixed problem with indentation when auto-indent is turned off
Thorbjørn Lindeijer [Thu, 3 Dec 2009 14:46:05 +0000 (15:46 +0100)]
Fixed problem with indentation when auto-indent is turned off

When auto-indent is turned off, Qt Creator uses a simplistic approach of
copying the indentation string from the previous line. This was broken
when the cursor was positioned inside the indentation, since this caused
part of the indentation to go to the next line, which was then prepended
with the copied indentation, in effect increasing the indentation for
each new line.

The solution here was to copy the indentation from the previous block
only after inserting the new block, which causes the indentation of the
previous line to be cut off by exactly the right amount to keep the
indentation constant.

Task-number: QTCREATORBUG-396
Reviewed-by: mae
14 years agoCompile fix for 42f849c4da2ecb9c32efcc19cee1e8e94e86bc10.
Christian Kamm [Thu, 3 Dec 2009 15:05:53 +0000 (16:05 +0100)]
Compile fix for 42f849c4da2ecb9c32efcc19cee1e8e94e86bc10.

Reviewed-by: Roberto Raggi
14 years agoFixed in-place renaming when text is selected
Thorbjørn Lindeijer [Thu, 3 Dec 2009 11:02:37 +0000 (12:02 +0100)]
Fixed in-place renaming when text is selected

This handles the case with the selection inside the name correctly, and
aborts when part of the selection is outside of the name. Previously, a
selection could cause the text to get inserted backwards.

Task-number: QTCREATORBUG-302
Reviewed-by: Roberto Raggi
14 years agoFixed line/column position after macro expansion.
Roberto Raggi [Thu, 3 Dec 2009 14:08:39 +0000 (15:08 +0100)]
Fixed line/column position after macro expansion.

Task-Number: QTCREATORBUG-409

14 years agoFixed inline implemented methods not showing up in the methods filter
Thorbjørn Lindeijer [Thu, 3 Dec 2009 10:34:31 +0000 (11:34 +0100)]
Fixed inline implemented methods not showing up in the methods filter

Done with Roberto Raggi.

Task-number: QTCREATORBUG-405

14 years agosuppress useless warning
mae [Tue, 1 Dec 2009 15:21:14 +0000 (16:21 +0100)]
suppress useless warning
(cherry picked from commit 982f97e48a53b174a2f748d6569983b8fe855f77)

14 years agofix lupdate breakage fallout
Oswald Buddenhagen [Wed, 2 Dec 2009 16:56:13 +0000 (17:56 +0100)]
fix lupdate breakage fallout

14 years agoTrk: Setting correct date and time when closing remote file.
Robert Loehning [Wed, 2 Dec 2009 13:42:03 +0000 (14:42 +0100)]
Trk: Setting correct date and time when closing remote file.

Reviewed-by: Friedemann Kleint
14 years agoSet a background color for disabled code in FakeVim style
Thorbjørn Lindeijer [Wed, 2 Dec 2009 11:29:31 +0000 (12:29 +0100)]
Set a background color for disabled code in FakeVim style

Fixes right margin and folded code popup background to be
non-transparent.

14 years agofix extra area drawing with multi-line blocks when line wrap is enabled
mae [Tue, 1 Dec 2009 14:55:55 +0000 (15:55 +0100)]
fix extra area drawing with multi-line blocks when line wrap is enabled

The extra area only updated the current *line* when the cursor moved, not
the entire paragraph. This left bold line numbers behind. The fix adds
the required update region when the cursor position changes blocks.

14 years agoPatch the paths in lrelease for Qt 4.6.1
Thorbjørn Lindeijer [Tue, 1 Dec 2009 14:21:09 +0000 (15:21 +0100)]
Patch the paths in lrelease for Qt 4.6.1

Necessary because lrelease is built statically now.

Reviewed-by: Oswald Buddenhagen
14 years agoRemoved stray apostrophe.
Robert Loehning [Tue, 1 Dec 2009 11:59:44 +0000 (12:59 +0100)]
Removed stray apostrophe.

Reviewed by: con

14 years agoSome naming adaptions.
con [Mon, 30 Nov 2009 17:21:39 +0000 (18:21 +0100)]
Some naming adaptions.

14 years agoDebugger: Protect reloadRegisters against early calls.
Friedemann Kleint [Mon, 30 Nov 2009 15:45:15 +0000 (16:45 +0100)]
Debugger: Protect reloadRegisters against early calls.

Check for correct state (InferiorStopped).

14 years agoAdded missing German translations.
Robert Loehning [Fri, 27 Nov 2009 11:43:22 +0000 (12:43 +0100)]
Added missing German translations.

Reviewed-by: Oswald Buddenhagen
14 years ago"backport" french translation from 1.3.0
Oswald Buddenhagen [Fri, 27 Nov 2009 10:23:48 +0000 (11:23 +0100)]
"backport" french translation from 1.3.0

14 years agoAdded missing German translation.
Oswald Buddenhagen [Thu, 26 Nov 2009 20:48:59 +0000 (21:48 +0100)]
Added missing German translation.

by robert

14 years agoDon't patch .qmake.cache on Linux
con [Thu, 26 Nov 2009 17:41:39 +0000 (18:41 +0100)]
Don't patch .qmake.cache on Linux

Reviewed-by: Daniel Molkentin
Reviewed-by: Thorbjørn Lindeijer
14 years agoPatch .qmake.cache
con [Thu, 26 Nov 2009 17:37:27 +0000 (18:37 +0100)]
Patch .qmake.cache

Reviewed-by: Daniel Molkentin
14 years agoSet the brush origin in the BaseTextEditor for the WaveUnderlines
Thorbjørn Lindeijer [Thu, 26 Nov 2009 15:34:14 +0000 (16:34 +0100)]
Set the brush origin in the BaseTextEditor for the WaveUnderlines

This is necessary since a recent change in Qt 4.6 to how the
WaveUnderline is drawn. It makes sure the WaveUnderline repeats
correctly from one text item to another.

Reviewed-by: mae
14 years agoFixed possible crash in the code completion
Thorbjørn Lindeijer [Thu, 26 Nov 2009 15:22:03 +0000 (16:22 +0100)]
Fixed possible crash in the code completion

Null pointer reference in a case where the global namespace is
explicitly specified using ::

Task-number: QTCREATORBUG-351
Review-pending-by: Roberto Raggi
14 years agoCDB: Fix disassembler for 64 bit addresses.
Friedemann Kleint [Thu, 26 Nov 2009 07:51:43 +0000 (08:51 +0100)]
CDB: Fix disassembler for 64 bit addresses.

14 years agoDebugger/CDB: Windows 64 integer handling.
Friedemann Kleint [Wed, 25 Nov 2009 15:32:44 +0000 (16:32 +0100)]
Debugger/CDB: Windows 64 integer handling.

Convert CDB unsigned integer values should they appear in hex,
make format flexible.
Use int64 for reformatting integers to be able to accommodate
64 bit values on Windows 64. Add some more integer types.
Do not save decimal type formats. Add menu option to clear
individual formatting. Do not use map[] to query the type formats
(inserting 0 everywhere as a side effect).

Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agodoc updates
Oswald Buddenhagen [Mon, 23 Nov 2009 17:03:15 +0000 (18:03 +0100)]
doc updates

mostly reshuffling and language fixes

the bulk of the work was done by Others Than Me (TM).

14 years agoadd script to fix the navigation links when the index order changes
Oswald Buddenhagen [Tue, 24 Nov 2009 16:27:59 +0000 (17:27 +0100)]
add script to fix the navigation links when the index order changes

re-linking the pages manually makes one's head explode, so automate it.

14 years agowhitespace shuffling
Oswald Buddenhagen [Mon, 23 Nov 2009 11:55:07 +0000 (12:55 +0100)]
whitespace shuffling

remove trailing ws, expand tabs and normalize newlines

14 years agoless bizarre build command setup for windows
Oswald Buddenhagen [Mon, 2 Nov 2009 20:35:31 +0000 (21:35 +0100)]
less bizarre build command setup for windows

14 years agodo not break on mingw with sh in PATH
Oswald Buddenhagen [Tue, 24 Nov 2009 11:40:14 +0000 (12:40 +0100)]
do not break on mingw with sh in PATH

14 years agomacx: compile doc into the right directory instead of copying it later
Oswald Buddenhagen [Mon, 2 Nov 2009 20:36:26 +0000 (21:36 +0100)]
macx: compile doc into the right directory instead of copying it later

14 years agoArm => ARM
Oswald Buddenhagen [Mon, 23 Nov 2009 13:06:15 +0000 (14:06 +0100)]
Arm => ARM

14 years agoBetter layout for qrc editor.
con [Tue, 24 Nov 2009 15:20:26 +0000 (16:20 +0100)]
Better layout for qrc editor.

Task-number: QTCREATORBUG-339

14 years agoFix a bug with selecting copying the right text to the Find dialog.
dt [Wed, 21 Oct 2009 13:10:27 +0000 (15:10 +0200)]
Fix a bug with selecting copying the right text to the Find dialog.

To reproduce:
Split editors.
Select text in first editor.
Select text in second editor.
Invoke the find dialog.
Notice that the text from the first editor was used.

Reviewed-By: mae
(cherry picked from commit fd0fbddebbf8b78398cc4d26e3bb36b8c445a307)

14 years agoDon't wrap around the completion list when auto-repeating
Thorbjørn Lindeijer [Mon, 23 Nov 2009 19:42:31 +0000 (20:42 +0100)]
Don't wrap around the completion list when auto-repeating

It can be a bit disturbing if the list suddenly jumps when you don't
release the down or up key in time.

Done with mae.

14 years agoFixed a potential issue with automatic brace matching
Thorbjørn Lindeijer [Mon, 23 Nov 2009 14:15:56 +0000 (15:15 +0100)]
Fixed a potential issue with automatic brace matching

When encountering a line that hasn't been highlighted yet, we need to
abort the optimization for changing brace depth.

Done with Roberto Raggi and mae.

14 years agoAnother fix for patched file file :name
con [Mon, 23 Nov 2009 11:54:13 +0000 (12:54 +0100)]
Another fix for patched file file :name

Reviewed-by: Daniel Molkentin
14 years agoalso patch .qmake.cache, fix list of files to patch in old patcher.
Daniel Molkentin [Mon, 23 Nov 2009 10:43:15 +0000 (11:43 +0100)]
also patch .qmake.cache, fix list of files to patch in old patcher.

14 years agoCDB: Convert 64bit pointers correctly.
Friedemann Kleint [Mon, 23 Nov 2009 10:01:49 +0000 (11:01 +0100)]
CDB: Convert 64bit pointers correctly.

Adapt to the output format "0x0000000`0046535C".
Reviewed-by: hjk <qtc-committer@nokia.com>
14 years agoDebugger: Fix setting of integer formats per type.
Friedemann Kleint [Mon, 23 Nov 2009 10:00:43 +0000 (11:00 +0100)]
Debugger: Fix setting of integer formats per type.
Reviewed-by: hjk <qtc-committer@nokia.com>
14 years agoValidatation of the first half of the French translations.
Benjamin Poulain [Sun, 22 Nov 2009 19:54:22 +0000 (20:54 +0100)]
Validatation of the first half of the French translations.

Validate the strings of the French translation. The strings were fixed
when necessary.

14 years agoUpdated french strings to be translated for 1.3
Pierre Rossi [Sun, 22 Nov 2009 17:43:39 +0000 (18:43 +0100)]
Updated french strings to be translated for 1.3

14 years agoAdditionnal French translations
Benjamin Poulain [Thu, 19 Nov 2009 15:05:06 +0000 (16:05 +0100)]
Additionnal French translations

Reviewed-by: Pierre Rossi
14 years agoFixed function argument widget text color in dark themes
Thorbjørn Lindeijer [Fri, 20 Nov 2009 15:36:54 +0000 (16:36 +0100)]
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

14 years agoMake context help work also when switching user interface language.
con [Thu, 19 Nov 2009 10:23:52 +0000 (11:23 +0100)]
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
14 years agoS60: Detect Device SDK from paths if registry entry is missing.
Friedemann Kleint [Fri, 20 Nov 2009 14:58:24 +0000 (15:58 +0100)]
S60: Detect Device SDK from paths if registry entry is missing.

Display the error in a label of the preferences page.
Reviewed-by: con
14 years agoFixed possible crash when using tab to complete (Qt/Carbon only).
Roberto Raggi [Fri, 20 Nov 2009 14:07:10 +0000 (15:07 +0100)]
Fixed possible crash when using tab to complete (Qt/Carbon only).

Task-number: QTCREATORBUG-199
Reviewed-by: thorbjorn
14 years agodebugger: mark 'Null' QStrings() in pretty-printers
hjk [Thu, 19 Nov 2009 15:17:35 +0000 (16:17 +0100)]
debugger: mark 'Null' QStrings() in pretty-printers

14 years agogdb: On Windows, also substitute the debugging path for non-sdk Qt.
Daniel Molkentin [Thu, 19 Nov 2009 18:43:18 +0000 (19:43 +0100)]
gdb: On Windows, also substitute the debugging path for non-sdk Qt.

Reviewed-By: hjk
14 years agoFix RunConfigurations showing only enabled RunConfigurations
dt [Thu, 19 Nov 2009 17:54:36 +0000 (18:54 +0100)]
Fix RunConfigurations showing only enabled RunConfigurations

14 years agoFixed possible crash on constructor completion
Thorbjørn Lindeijer [Thu, 19 Nov 2009 16:23:53 +0000 (17:23 +0100)]
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>
14 years agoDo not mark env vars as modified if not needed.
Tobias Hunger [Thu, 19 Nov 2009 15:55:27 +0000 (16:55 +0100)]
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
14 years agoreset 'busy' cursor if editor could not be created
hjk [Thu, 19 Nov 2009 08:52:34 +0000 (09:52 +0100)]
reset 'busy' cursor if editor could not be created

14 years agodebugger: prevent crash when trying to view memory if bin editor is
hjk [Thu, 19 Nov 2009 08:51:21 +0000 (09:51 +0100)]
debugger: prevent crash when trying to view memory if bin editor is
unavailable

14 years agofakevim: fix undo of 'J'
hjk [Thu, 19 Nov 2009 07:36:21 +0000 (08:36 +0100)]
fakevim: fix undo of 'J'

14 years agoFixed translation typo.
Robert Loehning [Wed, 18 Nov 2009 18:46:10 +0000 (19:46 +0100)]
Fixed translation typo.

Reviewed-by: Maurice Kalinowski
14 years agoUpdate japanese translation.
axasia [Wed, 18 Nov 2009 17:14:07 +0000 (18:14 +0100)]
Update japanese translation.

Merge-request: 2140
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agoValidating French translations
Jonathan Courtois [Wed, 18 Nov 2009 16:17:42 +0000 (17:17 +0100)]
Validating French translations

Merge-request: 2131
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agoFrench translations
Oswald Buddenhagen [Wed, 18 Nov 2009 16:17:42 +0000 (17:17 +0100)]
French translations

by Ben & Pierre

14 years agoFrench translations
Jonathan Courtois [Wed, 18 Nov 2009 16:17:42 +0000 (17:17 +0100)]
French translations

Merge-request: 2131
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agoFrench translations
Florent Renault [Wed, 18 Nov 2009 16:17:42 +0000 (17:17 +0100)]
French translations

Merge-request: 2131
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agoWizard: Polish, layout and module names.
Friedemann Kleint [Wed, 18 Nov 2009 11:11:16 +0000 (12:11 +0100)]
Wizard: Polish, layout and module names.
Reviewed-by: con
14 years agoDesigner: Restrict files used for "Go to slot" to project of ui-file.
Friedemann Kleint [Wed, 18 Nov 2009 09:31:16 +0000 (10:31 +0100)]
Designer: Restrict files used for "Go to slot" to project of ui-file.

Reviewed-by: con
Task-number: QTCREATORBUG-245

14 years agoShortcut Ctrk-L (Locator Goto Line) broken in most translations.
Friedemann Kleint [Tue, 17 Nov 2009 15:56:04 +0000 (16:56 +0100)]
Shortcut Ctrk-L (Locator Goto Line) broken in most translations.

Change the translateable string not to contain a blank.

Task-number: QTCREATORBUG-299
Reviewed-by: Thorbjorn Lindeijer <thorbjorn.lindeijer@nokia.com>
14 years agoUpdated Russian translation.
Sergey Belyashov [Tue, 17 Nov 2009 14:47:38 +0000 (15:47 +0100)]
Updated Russian translation.

Merge-request: 2115
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agoInsert semicolon when matching enum declarations.
Roberto Raggi [Mon, 16 Nov 2009 17:15:33 +0000 (18:15 +0100)]
Insert semicolon when matching enum declarations.

Task-number: QTCREATORBUG-282

14 years agoUse a map for the memoization.
Roberto Raggi [Mon, 16 Nov 2009 17:00:20 +0000 (18:00 +0100)]
Use a map for the memoization.

14 years agoFixed printing of the current Qt version number
Thorbjørn Lindeijer [Sat, 14 Nov 2009 12:58:09 +0000 (13:58 +0100)]
Fixed printing of the current Qt version number

The final dot was confusing qmake, apparently considered part of the
variable name.

14 years agoRevert "Fixed the direction in which include paths are traversed"
Roberto Raggi [Fri, 13 Nov 2009 14:20:54 +0000 (15:20 +0100)]
Revert "Fixed the direction in which include paths are traversed"

This reverts commit 6a9e7ab0f4963eed3edec4985e24e4c005c43a23.

14 years agodebugger: access preloaded dumpers also when stopped by a signal
hjk [Fri, 13 Nov 2009 13:15:08 +0000 (14:15 +0100)]
debugger: access preloaded dumpers also when stopped by a signal

14 years agoS60: More precise about Qt version to use.
Robert Loehning [Fri, 13 Nov 2009 10:29:50 +0000 (11:29 +0100)]
S60: More precise about Qt version to use.

14 years agoS60: Added documentation paragraph about running in emulator.
Robert Loehning [Fri, 13 Nov 2009 09:57:53 +0000 (10:57 +0100)]
S60: Added documentation paragraph about running in emulator.

14 years agodebugger: fix breakpoihnt deletion by using the context menu action
hjk [Fri, 13 Nov 2009 09:55:50 +0000 (10:55 +0100)]
debugger: fix breakpoihnt deletion by using the context menu action

14 years agodebugger: work on QObject dumper auto test
hjk [Fri, 13 Nov 2009 09:49:28 +0000 (10:49 +0100)]
debugger: work on QObject dumper auto test

14 years agoFix a bug when processing the comment
Jarek Kobus [Fri, 13 Nov 2009 07:48:28 +0000 (08:48 +0100)]
Fix a bug when processing the comment

When we meet /* we look for closing */ and continue processing from the next char, not from '/' which was a part of the closing comment

14 years agoScreenshots for project settings.
con [Thu, 12 Nov 2009 19:11:25 +0000 (20:11 +0100)]
Screenshots for project settings.

Reviewed-by: dt
14 years agoCSL is the right name.
con [Thu, 12 Nov 2009 18:41:37 +0000 (19:41 +0100)]
CSL is the right name.

Reviewed-by: Oswald Buddenhagen
14 years agoUpdate the documentation for Qt for Symbian support.
con [Thu, 12 Nov 2009 17:42:08 +0000 (18:42 +0100)]
Update the documentation for Qt for Symbian support.

Reviewed-by: Robert Loehning
14 years agoPretend that the gdbmacros.cpp is actually 5 minutes older then it is.
dt [Thu, 12 Nov 2009 16:34:41 +0000 (17:34 +0100)]
Pretend that the gdbmacros.cpp is actually 5 minutes older then it is.

Fixes a bug that after package installation the debugging helpers are
sometimes marked as invalid.

Reviewed-By: hjk
14 years agoDebugger: Do not use LD_PRELOAD on Mac.
Friedemann Kleint [Thu, 12 Nov 2009 15:49:12 +0000 (16:49 +0100)]
Debugger: Do not use LD_PRELOAD on Mac.

Fails for system Qt on 10.6.

Reviewed-By: hjk <qtc-committer@nokia.com>
14 years agodon't track shared library events on gdb < 7, after all.
Oswald Buddenhagen [Thu, 12 Nov 2009 13:49:54 +0000 (14:49 +0100)]
don't track shared library events on gdb < 7, after all.

The problem is that the shlib events disturb bounded execution requests
and there is no way to recover from this - the debugger will effectively
turn "step over" into "continue". this is nicely explained in
http://vladimir_prus.blogspot.com/2007/12/debugger-stories-pending-breakpoints.html

14 years agoUpdate Polish translations
Jarek Kobus [Thu, 12 Nov 2009 10:48:24 +0000 (11:48 +0100)]
Update Polish translations

14 years agoupdate Russian translations for 1.3.0
Ritt Konstantin [Thu, 12 Nov 2009 10:17:36 +0000 (11:17 +0100)]
update Russian translations for 1.3.0

Merge-request: 2065
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
14 years agodebugger: make QVariant dumper compile with QT_NO_SHORTCUT
hjk [Thu, 12 Nov 2009 08:25:01 +0000 (09:25 +0100)]
debugger: make QVariant dumper compile with QT_NO_SHORTCUT

14 years agodebugger: add autotest for QSet dumper
hjk [Tue, 10 Nov 2009 13:55:35 +0000 (14:55 +0100)]
debugger: add autotest for QSet dumper

14 years agodebugger: let dumpers override reported inames
hjk [Tue, 10 Nov 2009 13:14:44 +0000 (14:14 +0100)]
debugger: let dumpers override reported inames

14 years agodebugger: add autotest involving a typedef
hjk [Tue, 10 Nov 2009 13:12:34 +0000 (14:12 +0100)]
debugger: add autotest involving a typedef

14 years agofix prl names, also include debug versions.
Daniel Molkentin [Wed, 11 Nov 2009 16:31:08 +0000 (17:31 +0100)]
fix prl names, also include debug versions.

Reviewed-By: con
14 years agoCode model: Update on changes from the versioning system.
Friedemann Kleint [Wed, 11 Nov 2009 13:32:54 +0000 (14:32 +0100)]
Code model: Update on changes from the versioning system.

Add changed signals to IVersionControl and
VCSManager and wire them to the update methods. Add a menu action for
manually updating. Improved version of reverted
7aa24116935249a840e1350a6f8de73bc794fb09.

Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
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