Fix naming

This commit is contained in:
Martin Gräßlin 2015-07-22 08:38:00 +02:00
parent 999b01ec27
commit a5185f924d
2 changed files with 3 additions and 3 deletions

View file

@ -224,12 +224,12 @@ void ShellClient::addDamage(const QRegion &damage)
} }
setGeometry(QRect(position, m_clientSize)); setGeometry(QRect(position, m_clientSize));
} }
markAsUnmapped(); markAsMapped();
setDepth(m_shellSurface->surface()->buffer()->hasAlphaChannel() ? 32 : 24); setDepth(m_shellSurface->surface()->buffer()->hasAlphaChannel() ? 32 : 24);
Toplevel::addDamage(damage); Toplevel::addDamage(damage);
} }
void ShellClient::markAsUnmapped() void ShellClient::markAsMapped()
{ {
if (!m_unmapped) { if (!m_unmapped) {
return; return;

View file

@ -126,7 +126,7 @@ private:
void findInternalWindow(); void findInternalWindow();
void updateInternalWindowGeometry(); void updateInternalWindowGeometry();
void updateIcon(); void updateIcon();
void markAsUnmapped(); void markAsMapped();
static void deleteClient(ShellClient *c); static void deleteClient(ShellClient *c);
KWayland::Server::ShellSurfaceInterface *m_shellSurface; KWayland::Server::ShellSurfaceInterface *m_shellSurface;