| 98 | } |
| 99 | |
| 100 | int onReleased(function<void()> callback) FL_NOEXCEPT { |
| 101 | int id = mReleaseCallbacks.add(callback); |
| 102 | mListener.addToEngineEventsOnce(); |
| 103 | return id; |
| 104 | } |
| 105 | |
| 106 | // Per-list removers. Each callback list maintains its own ID counter, |
| 107 | // so an id returned by onChanged()/onPressed()/onReleased() is only |
nothing calls this directly
no test coverage detected