From 487990009a462806a0479fc2cd09cfacd445bff3 Mon Sep 17 00:00:00 2001 From: Vlad Zagorodniy Date: Sat, 2 Feb 2019 16:59:42 +0200 Subject: [PATCH] Move ExtendedCursor::Shape's doc comment to the correct place Summary: It probably has to be placed above the enum, though I'm not sure whether it applies to ExtendedCursor::Shape or CursorShape. Test Plan: Compiles. Reviewers: #kwin, apol Reviewed By: apol Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D18669 --- cursor.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cursor.h b/cursor.h index c79cbc15be..0c709e4ab5 100644 --- a/cursor.h +++ b/cursor.h @@ -34,6 +34,9 @@ namespace KWin { namespace ExtendedCursor { +/** + * Extension of Qt::CursorShape with values not currently present there + **/ enum Shape { SizeNorthWest = 0x100 + 0, SizeNorth = 0x100 + 1, @@ -45,10 +48,6 @@ enum Shape { SizeSouthWest = 0x100 + 7 }; } -/** - * Extension of Qt::CursorShape with values not currently present there - */ - /** * @brief Wrapper round Qt::CursorShape with extensions enums into a single entity