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
This commit is contained in:
parent
5ad797d5fe
commit
487990009a
1 changed files with 3 additions and 4 deletions
7
cursor.h
7
cursor.h
|
@ -34,6 +34,9 @@ namespace KWin
|
||||||
{
|
{
|
||||||
|
|
||||||
namespace ExtendedCursor {
|
namespace ExtendedCursor {
|
||||||
|
/**
|
||||||
|
* Extension of Qt::CursorShape with values not currently present there
|
||||||
|
**/
|
||||||
enum Shape {
|
enum Shape {
|
||||||
SizeNorthWest = 0x100 + 0,
|
SizeNorthWest = 0x100 + 0,
|
||||||
SizeNorth = 0x100 + 1,
|
SizeNorth = 0x100 + 1,
|
||||||
|
@ -45,10 +48,6 @@ enum Shape {
|
||||||
SizeSouthWest = 0x100 + 7
|
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
|
* @brief Wrapper round Qt::CursorShape with extensions enums into a single entity
|
||||||
|
|
Loading…
Reference in a new issue