Link @1234 type text to EIDs in the comments viewer

This commit is contained in:
baldurk
2020-10-23 13:57:38 +01:00
parent 9779c56333
commit 369120cddf
4 changed files with 130 additions and 23 deletions
+13
View File
@@ -474,6 +474,19 @@ struct ICommentView
"QWidget.");
virtual QWidget *Widget() = 0;
DOCUMENT(R"(Sets the current comments text.
:param str text: The new comments text.
)");
virtual void SetComments(const rdcstr &text) = 0;
DOCUMENT(R"(Gets the current comments text.
:return: The current comments text.
:rtype: str
)");
virtual rdcstr GetComments() = 0;
protected:
ICommentView() = default;
~ICommentView() = default;