diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-12 00:09:45 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-12 00:09:45 +0200 |
commit | 47a29821190cbb5b239f053ae0d18e13bb420420 (patch) | |
tree | 4b963cbdd98c1f788e03d690a426b005ae9cc495 /Applications | |
parent | 667e678aa6a37c4df1b4a72a09ef4069ac003f3c (diff) | |
download | serenity-47a29821190cbb5b239f053ae0d18e13bb420420.zip |
LibCore: Move LibGUI/GTimer to LibCore/CTimer.
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/Terminal/Terminal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/Terminal/Terminal.h b/Applications/Terminal/Terminal.h index 3fedf44bdf..724b128772 100644 --- a/Applications/Terminal/Terminal.h +++ b/Applications/Terminal/Terminal.h @@ -7,7 +7,7 @@ #include <SharedGraphics/Rect.h> #include <LibGUI/GWidget.h> #include <LibCore/CNotifier.h> -#include <LibGUI/GTimer.h> +#include <LibCore/CTimer.h> class Font; @@ -160,5 +160,5 @@ private: int m_glyph_width { 0 }; - GTimer m_cursor_blink_timer; + CTimer m_cursor_blink_timer; }; |