aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2014-09-30 17:45:48 +0200
committerhjk <[email protected]>2014-10-13 09:31:43 +0200
commitcd90ddad559f27582b09e9b8b6e91012738e9fad (patch)
tree199c30dc600fb24fd660547fbd74dba9e3b07481 /src/plugins/debugger/debuggerplugin.cpp
parent392b3f65d2ada9a2b8bb1cb15402efc659344432 (diff)
TextEditor: Move some enums to namespace scope
In preparation for the final s/BaseTextEditor/TextEditor. Change-Id: Ie18db9817ec9eec53d805443605ca55423c64c93 Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index f7d501b6dd2..7dda790f51a 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -836,7 +836,7 @@ public slots:
void updateBreakMenuItem(Core::IEditor *editor);
void setBusyCursor(bool busy);
void requestMark(TextEditor::TextEditorWidget *widget, int lineNumber,
- TextEditor::BaseTextEditor::MarkRequestKind kind);
+ TextEditor::TextMarkRequestKind kind);
void requestContextMenu(TextEditor::TextEditorWidget *widget,
int lineNumber, QMenu *menu);
@@ -2039,9 +2039,9 @@ void DebuggerPluginPrivate::toggleBreakpointByAddress(quint64 address,
}
void DebuggerPluginPrivate::requestMark(TextEditorWidget *widget, int lineNumber,
- BaseTextEditor::MarkRequestKind kind)
+ TextMarkRequestKind kind)
{
- if (kind != BaseTextEditor::BreakpointRequest)
+ if (kind != BreakpointRequest)
return;
TextDocument *document = widget->textDocument();