Skip to content
Snippets Groups Projects
Commit 6594f7a2 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Added getters

parent 8a73554d
No related merge requests found
......@@ -616,6 +616,9 @@ QuickFixOperation::~QuickFixOperation()
CPPEditor *QuickFixOperation::editor() const
{ return _editor; }
const Utils::ChangeSet &QuickFixOperation::changeSet() const
{ return _changeSet; }
QTextCursor QuickFixOperation::textCursor() const
{ return _textCursor; }
......
......@@ -75,6 +75,7 @@ public:
int selectionEnd() const;
CPPEditor *editor() const;
const Utils::ChangeSet &changeSet() const;
virtual void apply() = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment