Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit 38267ea

Browse files
committed
[displaysettings] Move populated() method
Move populated() method a bit, so that it is not located in between flipoverGestureEnabled() and setFlipoverGestureEnabled() methods. Signed-off-by: Simo Piiroinen <[email protected]>
1 parent 866bf9f commit 38267ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/displaysettings.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -278,11 +278,6 @@ bool DisplaySettings::flipoverGestureEnabled() const
278278
return m_flipoverGestureEnabled;
279279
}
280280

281-
bool DisplaySettings::populated() const
282-
{
283-
return m_populated;
284-
}
285-
286281
void DisplaySettings::setFlipoverGestureEnabled(bool enabled)
287282
{
288283
if (m_flipoverGestureEnabled != enabled) {
@@ -292,6 +287,11 @@ void DisplaySettings::setFlipoverGestureEnabled(bool enabled)
292287
}
293288
}
294289

290+
bool DisplaySettings::populated() const
291+
{
292+
return m_populated;
293+
}
294+
295295
void DisplaySettings::configChange(const QString &key, const QDBusVariant &value)
296296
{
297297
updateConfig(key, value.variant());

0 commit comments

Comments
 (0)