summaryrefslogtreecommitdiffstats
path: root/src/compositor/extensions/qwaylandxdgshellintegration.cpp
diff options
context:
space:
mode:
authorJohan Klokkhammer Helsing <johan.helsing@qt.io>2016-07-04 17:54:22 +0200
committerPaul Olav Tvete <paul.tvete@qt.io>2016-07-12 07:47:19 +0000
commitdad7a6fafd27ee6331869c08adbe7cc071c16417 (patch)
treebf20122d65ee9e76c7f854b900f539c15bad7c00 /src/compositor/extensions/qwaylandxdgshellintegration.cpp
parent887f64448e49aa5539ad3cc23a2bac4e8c63648d (diff)
Rename sendUnMaximized to sendUnmaximized
Change-Id: I20add5c8b12e1345ce50c009d8bae80fde9806e1 Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
Diffstat (limited to 'src/compositor/extensions/qwaylandxdgshellintegration.cpp')
-rw-r--r--src/compositor/extensions/qwaylandxdgshellintegration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compositor/extensions/qwaylandxdgshellintegration.cpp b/src/compositor/extensions/qwaylandxdgshellintegration.cpp
index 514f956ba..cb3b7ea23 100644
--- a/src/compositor/extensions/qwaylandxdgshellintegration.cpp
+++ b/src/compositor/extensions/qwaylandxdgshellintegration.cpp
@@ -96,7 +96,7 @@ bool XdgShellIntegration::mouseReleaseEvent(QMouseEvent *event)
Q_UNUSED(event);
if (grabberState == GrabberState::Resize) {
- m_xdgSurface->sendUnMaximized();
+ m_xdgSurface->sendUnmaximized();
grabberState = GrabberState::Default;
return true;
} else if (grabberState == GrabberState::Move) {
@@ -135,7 +135,7 @@ void XdgShellIntegration::handleSetMaximized()
void XdgShellIntegration::handleUnsetMaximized()
{
- m_xdgSurface->sendUnMaximized(maximizeState.initialWindowSize);
+ m_xdgSurface->sendUnmaximized(maximizeState.initialWindowSize);
}
void XdgShellIntegration::handleMaximizedChanged()