forked from qt-creator/qt-creator
TextEditor: Move some enums to namespace scope
In preparation for the final s/BaseTextEditor/TextEditor. Change-Id: Ie18db9817ec9eec53d805443605ca55423c64c93 Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user