summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Trk: Setting correct date and time when closing remote file.Robert Loehning2009-12-023-1/+19
| | | | Reviewed-by: Friedemann Kleint
* Set a background color for disabled code in FakeVim styleThorbjørn Lindeijer2009-12-021-1/+1
| | | | | Fixes right margin and folded code popup background to be non-transparent.
* fix extra area drawing with multi-line blocks when line wrap is enabledmae2009-12-012-1/+19
| | | | | | 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.
* Patch the paths in lrelease for Qt 4.6.1Thorbjørn Lindeijer2009-12-012-0/+2
| | | | | | Necessary because lrelease is built statically now. Reviewed-by: Oswald Buddenhagen
* Removed stray apostrophe.Robert Loehning2009-12-011-1/+1
| | | | Reviewed by: con
* Some naming adaptions.con2009-11-303-3/+3
|
* Debugger: Protect reloadRegisters against early calls.Friedemann Kleint2009-11-302-0/+4
| | | | Check for correct state (InferiorStopped).
* Added missing German translations.Robert Loehning2009-11-271-25/+25
| | | | Reviewed-by: Oswald Buddenhagen
* "backport" french translation from 1.3.0Oswald Buddenhagen2009-11-271-1154/+1150
|
* Added missing German translation.Oswald Buddenhagen2009-11-261-1/+1
| | | | by robert
* Don't patch .qmake.cache on Linuxcon2009-11-261-1/+0
| | | | | Reviewed-by: Daniel Molkentin Reviewed-by: Thorbjørn Lindeijer
* Patch .qmake.cachecon2009-11-261-0/+1
| | | | Reviewed-by: Daniel Molkentin
* Set the brush origin in the BaseTextEditor for the WaveUnderlinesThorbjørn Lindeijer2009-11-261-0/+3
| | | | | | | | 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
* Fixed possible crash in the code completionThorbjørn Lindeijer2009-11-261-2/+2
| | | | | | | | Null pointer reference in a case where the global namespace is explicitly specified using :: Task-number: QTCREATORBUG-351 Review-pending-by: Roberto Raggi
* CDB: Fix disassembler for 64 bit addresses.Friedemann Kleint2009-11-262-3/+9
|
* Debugger/CDB: Windows 64 integer handling.Friedemann Kleint2009-11-254-57/+95
| | | | | | | | | | | | 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>
* doc updatesOswald Buddenhagen2009-11-241-609/+642
| | | | | | mostly reshuffling and language fixes the bulk of the work was done by Others Than Me (TM).
* add script to fix the navigation links when the index order changesOswald Buddenhagen2009-11-242-0/+75
| | | | re-linking the pages manually makes one's head explode, so automate it.
* whitespace shufflingOswald Buddenhagen2009-11-241-40/+40
| | | | remove trailing ws, expand tabs and normalize newlines
* less bizarre build command setup for windowsOswald Buddenhagen2009-11-241-13/+10
|
* do not break on mingw with sh in PATHOswald Buddenhagen2009-11-241-2/+1
|
* macx: compile doc into the right directory instead of copying it laterOswald Buddenhagen2009-11-242-13/+6
|
* Arm => ARMOswald Buddenhagen2009-11-245-8/+8
|
* Better layout for qrc editor.con2009-11-241-49/+34
| | | | Task-number: QTCREATORBUG-339
* Fix a bug with selecting copying the right text to the Find dialog.dt2009-11-241-0/+2
| | | | | | | | | | | | 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)
* Don't wrap around the completion list when auto-repeatingThorbjørn Lindeijer2009-11-231-2/+4
| | | | | | | 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.
* Fixed a potential issue with automatic brace matchingThorbjørn Lindeijer2009-11-231-3/+1
| | | | | | | 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.
* Another fix for patched file file :namecon2009-11-231-1/+1
| | | | Reviewed-by: Daniel Molkentin
* also patch .qmake.cache, fix list of files to patch in old patcher.Daniel Molkentin2009-11-232-1/+2
|
* CDB: Convert 64bit pointers correctly.Friedemann Kleint2009-11-231-16/+26
| | | | | Adapt to the output format "0x0000000`0046535C". Reviewed-by: hjk <qtc-committer@nokia.com>
* Debugger: Fix setting of integer formats per type.Friedemann Kleint2009-11-231-2/+2
| | | | Reviewed-by: hjk <qtc-committer@nokia.com>
* Validatation of the first half of the French translations.Benjamin Poulain2009-11-221-404/+398
| | | | | Validate the strings of the French translation. The strings were fixed when necessary.
* Updated french strings to be translated for 1.3Pierre Rossi2009-11-221-678/+903
|
* Additionnal French translationsBenjamin Poulain2009-11-221-590/+608
| | | | Reviewed-by: Pierre Rossi
* Fixed function argument widget text color in dark themesThorbjørn Lindeijer2009-11-201-0/+8
| | | | | | | 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
* Make context help work also when switching user interface language.con2009-11-201-22/+29
| | | | | | | | | | | 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
* S60: Detect Device SDK from paths if registry entry is missing.Friedemann Kleint2009-11-204-13/+86
| | | | | Display the error in a label of the preferences page. Reviewed-by: con
* Fixed possible crash when using tab to complete (Qt/Carbon only).Roberto Raggi2009-11-201-2/+12
| | | | | Task-number: QTCREATORBUG-199 Reviewed-by: thorbjorn
* debugger: mark 'Null' QStrings() in pretty-printershjk2009-11-203-40/+55
|
* gdb: On Windows, also substitute the debugging path for non-sdk Qt.Daniel Molkentin2009-11-191-10/+12
| | | | Reviewed-By: hjk
* Fix RunConfigurations showing only enabled RunConfigurationsdt2009-11-191-11/+9
|
* Fixed possible crash on constructor completionThorbjørn Lindeijer2009-11-191-1/+2
| | | | | | | | 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>
* Do not mark env vars as modified if not needed.Tobias Hunger2009-11-191-9/+11
| | | | | | | | * 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
* reset 'busy' cursor if editor could not be createdhjk2009-11-191-2/+4
|
* debugger: prevent crash when trying to view memory if bin editor ishjk2009-11-192-7/+18
| | | | unavailable
* fakevim: fix undo of 'J'hjk2009-11-192-7/+27
|
* Fixed translation typo.Robert Loehning2009-11-181-1/+1
| | | | Reviewed-by: Maurice Kalinowski
* Update japanese translation.axasia2009-11-181-2816/+2128
| | | | | Merge-request: 2140 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* Validating French translationsJonathan Courtois2009-11-181-72/+72
| | | | | Merge-request: 2131 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
* French translationsOswald Buddenhagen2009-11-181-1247/+1271
| | | | by Ben & Pierre