From b23aa108900e32b514e1939494c0d54fa9e75e32 Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Tue, 28 Jun 2011 19:20:09 +0200 Subject: [PATCH] debugger: cosmetics Change-Id: I64f28d8e665a39b5942c6e09151d368571006220 Reviewed-on: http://codereview.qt.nokia.com/857 Reviewed-by: hjk <qthjk@ovi.com> --- src/plugins/debugger/debuggerplugin.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 6fd93f46e89..01f9051d7c8 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -619,7 +619,8 @@ public slots: { const QAction *action = qobject_cast<const QAction *>(sender()); QTC_ASSERT(action, return); - const BreakpointMenuContextData data = action->data().value<BreakpointMenuContextData>(); + const BreakpointMenuContextData data = + action->data().value<BreakpointMenuContextData>(); QString message; if (data.mode == BreakpointMenuContextData::MessageTracePoint) { if (data.address) { @@ -633,7 +634,7 @@ public slots: } QInputDialog dialog; // Create wide input dialog. dialog.setWindowFlags(dialog.windowFlags() - & ~(Qt::WindowContextHelpButtonHint|Qt::MSWindowsFixedSizeDialogHint)); + & ~(Qt::WindowContextHelpButtonHint|Qt::MSWindowsFixedSizeDialogHint)); dialog.resize(600, dialog.height()); dialog.setWindowTitle(tr("Add Message Tracepoint")); dialog.setLabelText (tr("Message:")); -- GitLab