diff options
author | hjk <[email protected]> | 2014-09-22 18:43:31 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-09-25 18:00:51 +0200 |
commit | 0fcca946adbc17ee6f911a5891e9c5dc11631288 (patch) | |
tree | 1c2fe74498b7eb123f908d408b8ff3bfc4fea12e /src/plugins/debugger/debuggerplugin.cpp | |
parent | 33670d22f7a133d1b2a495a123ff36fc31daebe1 (diff) |
Rename {Core,TextEditor},{Base,}TextDocument classes
First step of some more 'Base' removal in TextEditor.
s/Core::TextDocument/Core::BaseTextDocument/
s/TextEditor::BaseTextDocument/TextEditor::TextDocument/
Change-Id: I71ba325a2f0ad72ec9dae0d96846cbae72d326f7
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 07506aeb86e..d1a1adc0836 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1879,7 +1879,7 @@ void DebuggerPluginPrivate::requestContextMenu(BaseTextEditor *editor, bool contextUsable = true; BreakpointModelId id = BreakpointModelId(); - BaseTextDocument *document = editor->textDocument(); + TextDocument *document = editor->textDocument(); args.fileName = document->filePath(); if (document->property(Constants::OPENED_WITH_DISASSEMBLY).toBool()) { QString line = document->plainText() |