diff options
author | hjk <[email protected]> | 2014-07-25 14:54:10 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-07-28 12:33:47 +0200 |
commit | adfb30743df0644f144d16c95c70b025f8acb56c (patch) | |
tree | cb60a3735fafd6a19bbb295d83209b988fe04f87 /src/plugins/debugger/debuggerplugin.cpp | |
parent | f3f40b14de348b51e822db84925b01206c41f93a (diff) |
TextEditor: Merge BaseTextEditorDocument into BaseTextDocument
That was the only user of that layer of abstraction.
Change-Id: I2bdc4abb8b2b33bfb70398dd11f7ecc4745ddc43
Reviewed-by: Tobias Hunger <[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 0a89cff50e2..5b556e6462d 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1891,7 +1891,7 @@ void DebuggerPluginPrivate::requestContextMenu(BaseTextEditor *editor, bool contextUsable = true; BreakpointModelId id = BreakpointModelId(); - BaseTextEditorDocument *document = editor->textDocument(); + BaseTextDocument *document = editor->textDocument(); args.fileName = document->filePath(); if (document->property(Constants::OPENED_WITH_DISASSEMBLY).toBool()) { QString line = document->plainText() |