diff options
author | Andreas Kling <kling@serenityos.org> | 2023-04-26 19:00:22 +0200 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2023-04-26 19:17:04 +0100 |
commit | f61947fa9eb8ebc288e3f627897d0b4e3b4dd8e1 (patch) | |
tree | a1a0dbae3cb57adf09a47bdec81c00c75fae8457 /Ladybird/EventLoopImplementationQt.cpp | |
parent | 12c73915dc706641e8ade231d07e0f3669bcebe9 (diff) | |
download | serenity-f61947fa9eb8ebc288e3f627897d0b4e3b4dd8e1.zip |
LibCore: Remove unused EventLoopManager::wake()
Only EventLoopImplementation needs to know how to wake up.
Diffstat (limited to 'Ladybird/EventLoopImplementationQt.cpp')
-rw-r--r-- | Ladybird/EventLoopImplementationQt.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Ladybird/EventLoopImplementationQt.cpp b/Ladybird/EventLoopImplementationQt.cpp index f874a12b5f..933b4ef8fc 100644 --- a/Ladybird/EventLoopImplementationQt.cpp +++ b/Ladybird/EventLoopImplementationQt.cpp @@ -165,10 +165,6 @@ EventLoopManagerQt::EventLoopManagerQt() EventLoopManagerQt::~EventLoopManagerQt() = default; -void EventLoopManagerQt::wake() -{ -} - NonnullOwnPtr<Core::EventLoopImplementation> EventLoopManagerQt::make_implementation() { return adopt_own(*new EventLoopImplementationQt); |