Skip to content

Commit

Permalink
[displaysettings] Move populated() method
Browse files Browse the repository at this point in the history
Move populated() method a bit, so that it is not located in between
flipoverGestureEnabled() and setFlipoverGestureEnabled() methods.

Signed-off-by: Simo Piiroinen <simo.piiroinen@jollamobile.com>
  • Loading branch information
spiiroin committed Dec 21, 2018
1 parent 866bf9f commit 38267ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/displaysettings.cpp
Expand Up @@ -278,11 +278,6 @@ bool DisplaySettings::flipoverGestureEnabled() const
return m_flipoverGestureEnabled;
}

bool DisplaySettings::populated() const
{
return m_populated;
}

void DisplaySettings::setFlipoverGestureEnabled(bool enabled)
{
if (m_flipoverGestureEnabled != enabled) {
Expand All @@ -292,6 +287,11 @@ void DisplaySettings::setFlipoverGestureEnabled(bool enabled)
}
}

bool DisplaySettings::populated() const
{
return m_populated;
}

void DisplaySettings::configChange(const QString &key, const QDBusVariant &value)
{
updateConfig(key, value.variant());
Expand Down

0 comments on commit 38267ea

Please sign in to comment.