Make sure 'Enable QML debugging' is checked for all debug builds by
default.
This fixes a regression introduced in 921f86dfa7.
Task-number: QTCREATORBUG-10573
Change-Id: If3b1e5aedaad888fbaf1931ca2fc379c5ba40dd1
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This feature lets add files from selected directory and its
subdirectories to project. Files to add are selected based on filter
supplied by a user.
Task-number: QTCREATORBUG-9081
Change-Id: I978e87c24c5aeffc4eb74160cd6f4f20096de017
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Just use Utils::FileName, it magically does the right thing. :)
Task-number: QTCREATORBUG-10542
Change-Id: Id0d508c1e7d9317fa2e4a56ae9389e909c0c3834
Reviewed-by: Robert Loehning <robert.loehning@digia.com>
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
- Moves the findMatchingClassDeclaration() call from
FollowSymbolUnderCursor::findLink into VirtualFunctionsAssistProcessor
since we already have a SymbolFinder there
- Make canLookupVirtualFunctionOverrides a class member because we plan
to add some methods
- Better parameter names/order for FunctionHelper::overrides()
Change-Id: I0a93ff5445352d47e808adad45485e520f06946e
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
...since it does not make sense for TextEditor::QuickFix and
TextEditor::FollowSymbol.
Regarding the bug:
- The bug was exposed by having "Active completion" set to *not*
"Manual" in Options > Text Editor > Completion.
- After choosing one item from the overrides list the cursor was
positioned just right before the beginning of a function name, which
is a valid activation sequence (see CodeAssistantPrivate::process()))
As a consequence, a new proposal was requested.
Task-number: QTCREATORBUG-10345
Change-Id: Ib0d10192863fb33c0958a9afbf76ca8e7de772f8
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Fix warning: Z-order assignment: '' is not a valid widget.
Change-Id: Ic54ed85c91e96be097df8ff4d60416d49515f51a
Reviewed-by: hjk <hjk121@nokiamail.com>
Move obligatory information to the top of the topic.
Add information about enabling the experimental plugin.
Add a screenshot to make it clearer where the kit should be
added.
Change-Id: Ib80a42f0eb901d3f5b39e135e52124be95bda54a
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
We always need to update the editor token even if we already know about
the memory agent, because the editor behind it can change.
Change-Id: I6101b5a5c1ee0698ae7c7668d0766056a19eadb8
Reviewed-by: hjk <hjk121@nokiamail.com>
It could entirely miss commands sent by the engine.
The loop was waiting for something to come into stdin, but always only
read a single line from it, although it possibly already contained
multiple lines.
The patch simplifies the loop by removing the select() call entirely
and solely using sys.stdin.readline() which blocks anyhow.
Change-Id: Iff12aa051bb6e11c5ba30081d7c9d4e98940e231
Reviewed-by: hjk <hjk121@nokiamail.com>
Do not concatenate translated parts, this will result in incorrect
grammar.
Change-Id: Ieba7c948c09b927213ddd127be80651333f911ee
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
The type reported by LLDB for Qt 4 is actually wrong, but the type is
irrelevant for the dumper itself anyhow.
Change-Id: I33002316fa72cc8501f26dcc3ee08675547841ae
Reviewed-by: hjk <hjk121@nokiamail.com>
Something might go wrong during the rewrite
and we should catch this instead of just crashing.
Change-Id: Ic8ac6637d8c1f0c8aad86161386c0ee2e2e53fd6
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
We do not want to add the QtQuick import.
Change-Id: Ie94632f6be4826a69e365f2dcd565a52f180062b
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Combobox is styled and always shows "Add Import" as current text.
I reimplented the paint event to get this behavior.
Change-Id: I4448644397e7a39488f2e961728ebef924eec7ff
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
gdb.selected_inferior is too new for now.
Change-Id: I4290574b6dd2803a2fd2f860700693e7b2ac6efb
Reviewed-by: Rainer Keller <rainer.keller@digia.com>
Reviewed-by: hjk <hjk121@nokiamail.com>