mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
CEventLoop: Add a missing initializer to EventLoopTimer.
This commit is contained in:
parent
2923d39106
commit
caeb4b7a7e
Notes:
sideshowbarker
2024-07-19 12:58:02 +09:00
Author: https://github.com/awesomekling
Commit: caeb4b7a7e
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ private:
|
||||||
struct EventLoopTimer {
|
struct EventLoopTimer {
|
||||||
int timer_id { 0 };
|
int timer_id { 0 };
|
||||||
int interval { 0 };
|
int interval { 0 };
|
||||||
timeval fire_time;
|
timeval fire_time { 0, 0 };
|
||||||
bool should_reload { false };
|
bool should_reload { false };
|
||||||
WeakPtr<CObject> owner;
|
WeakPtr<CObject> owner;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue