summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compositor/extensions/qwaylandshell.cpp2
-rw-r--r--src/compositor/extensions/qwaylandshell.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/compositor/extensions/qwaylandshell.cpp b/src/compositor/extensions/qwaylandshell.cpp
index 9865432ed..633129b26 100644
--- a/src/compositor/extensions/qwaylandshell.cpp
+++ b/src/compositor/extensions/qwaylandshell.cpp
@@ -431,7 +431,7 @@ QSize QWaylandShellSurface::sizeForResize(const QSizeF &size, const QPointF &del
* This enum type provides a way to specify a specific edge or corner of
* the surface.
*
- * \value DefaultEdge The default edge.
+ * \value None No edge.
* \value TopEdge The top edge.
* \value BottomEdge The bottom edge.
* \value LeftEdge The left edge.
diff --git a/src/compositor/extensions/qwaylandshell.h b/src/compositor/extensions/qwaylandshell.h
index 6de141fef..3b0d1c255 100644
--- a/src/compositor/extensions/qwaylandshell.h
+++ b/src/compositor/extensions/qwaylandshell.h
@@ -88,7 +88,7 @@ public:
Q_ENUM(FullScreenMethod);
enum ResizeEdge {
- DefaultEdge = 0,
+ NoneEdge = 0,
TopEdge = 1,
BottomEdge = 2,
LeftEdge = 4,