1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:17:46 +00:00

LibCore: Move LibGUI/GTimer to LibCore/CTimer.

This commit is contained in:
Andreas Kling 2019-04-12 00:09:45 +02:00
parent 667e678aa6
commit 47a2982119
5 changed files with 14 additions and 14 deletions

View file

@ -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;
};