summaryrefslogtreecommitdiffstats
path: root/src/widgets/util/qundoview.cpp
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius.storm-olsen@nokia.com>2012-05-10 13:10:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-11 01:42:02 +0200
commitad97aba452ed7d3dbd3c9d437c59c14b2ae0661b (patch)
tree2a37426bc8e29f27d3b3a486693b484b2caa069c /src/widgets/util/qundoview.cpp
parent87d21127de4a361c7e76ba91a0ea336bbed32853 (diff)
Doc: Fix \sa usage
Ensure comma between elements (757 missing), single space and curly- braces around title elements, etc. Change-Id: Id16c3fda7fc47a12a0682f8720214f4990609a97 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/widgets/util/qundoview.cpp')
-rw-r--r--src/widgets/util/qundoview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/util/qundoview.cpp b/src/widgets/util/qundoview.cpp
index a87e9e0f05..2a88b50917 100644
--- a/src/widgets/util/qundoview.cpp
+++ b/src/widgets/util/qundoview.cpp
@@ -350,7 +350,7 @@ QUndoView::~QUndoView()
Returns the stack currently displayed by this view. If the view is looking at a
QUndoGroup, this the group's active stack.
- \sa setStack() setGroup()
+ \sa setStack(), setGroup()
*/
QUndoStack *QUndoView::stack() const
@@ -365,7 +365,7 @@ QUndoStack *QUndoView::stack() const
If the view was previously looking at a QUndoGroup, the group is set to 0.
- \sa stack() setGroup()
+ \sa stack(), setGroup()
*/
void QUndoView::setStack(QUndoStack *stack)
@@ -385,7 +385,7 @@ void QUndoView::setStack(QUndoStack *stack)
The view will update itself autmiatically whenever the active stack of the group changes.
- \sa group() setStack()
+ \sa group(), setStack()
*/
void QUndoView::setGroup(QUndoGroup *group)
@@ -416,7 +416,7 @@ void QUndoView::setGroup(QUndoGroup *group)
If the view is not looking at group, this function returns 0.
- \sa setGroup() setStack()
+ \sa setGroup(), setStack()
*/
QUndoGroup *QUndoView::group() const