diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 21:32:25 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 21:32:25 +0500 |
| commit | dc39575fb3ef90e5a2689babe7fb335cd88f6727 (patch) | |
| tree | 24f6cef8f2b558ae6f1f812c75be0c09a53fe417 /src/Fl_Timeout.cxx | |
| parent | 7d3793ce1d8cb26e7608bf859beca21359cec6e9 (diff) | |
wip
Diffstat (limited to 'src/Fl_Timeout.cxx')
| -rw-r--r-- | src/Fl_Timeout.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/Fl_Timeout.cxx b/src/Fl_Timeout.cxx index 4ba8a0f63..9aa89b839 100644 --- a/src/Fl_Timeout.cxx +++ b/src/Fl_Timeout.cxx @@ -344,17 +344,6 @@ int Fl_Timeout::remove_next_timeout(Fl_Timeout_Handler cb, void *data, void **da return ret; } -std::vector<Fl::TimeoutData> Fl_Timeout::timeout_list() { - std::vector<Fl::TimeoutData> v; - const Fl_Timeout *t = first_timeout; - while (t) { - v.push_back( { t->time, t->callback, t->data } ); - t = t->next; - } - return v; -} - - /** Remove the timeout from the active timer queue and push it onto the stack of currently running callbacks. |
