Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
72e65485
Commit
72e65485
authored
Apr 15, 2011
by
Christiaan Janssen
Browse files
QmlProfiler: fixed arguments for qmlobserver when profiling
Reviewed-by: Kai Koehne
parent
4fc3990b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmlprofiler/qmlprofilerengine.cpp
View file @
72e65485
...
...
@@ -150,9 +150,10 @@ void QmlProfilerEngine::finishProcess()
void
QmlProfilerEngine
::
QmlProfilerEnginePrivate
::
launchperfmonitor
()
{
QString
arguments
=
m_params
.
debuggeeArgs
;
arguments
+=
QLatin1String
(
"-qmljsdebugger=port:"
)
+
QString
::
number
(
m_params
.
connParams
.
port
)
QString
arguments
=
QLatin1String
(
"-qmljsdebugger=port:"
)
+
QString
::
number
(
m_params
.
connParams
.
port
)
+
QLatin1String
(
",block"
);
if
(
!
m_params
.
debuggeeArgs
.
isEmpty
())
arguments
+=
QChar
(
' '
)
+
m_params
.
debuggeeArgs
;
if
(
QmlProfilerPlugin
::
debugOutput
)
qWarning
(
"QmlProfiler: Launching %s:%d"
,
qPrintable
(
m_params
.
displayName
),
m_params
.
connParams
.
port
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment