summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDesktop/Screensaver.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibDesktop/Screensaver.h')
-rw-r--r--Userland/Libraries/LibDesktop/Screensaver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibDesktop/Screensaver.h b/Userland/Libraries/LibDesktop/Screensaver.h
index 0cebf0082f..417a021951 100644
--- a/Userland/Libraries/LibDesktop/Screensaver.h
+++ b/Userland/Libraries/LibDesktop/Screensaver.h
@@ -30,7 +30,7 @@ public:
protected:
Screensaver()
- : m_start_time(AK::Time::now_monotonic())
+ : m_start_time(AK::Duration::now_monotonic())
{
}
@@ -38,7 +38,7 @@ private:
void trigger_exit();
Optional<Gfx::IntPoint> m_mouse_origin;
- AK::Time m_start_time;
+ AK::Duration m_start_time;
};
}