Remove "index" argument from get_count()

Argument is not used, I suspect it ended up here as part of an abusive copy-paste!
This commit is contained in:
Elie Michel 2025-03-15 12:30:42 +01:00 committed by GitHub
parent 223608479b
commit facd97c107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,7 @@ namespace webui {
// ------ Event methods `e->xxx()` ------
// Get how many arguments there are in an event.
size_t get_count(size_t index = 0) {
size_t get_count() {
return webui_get_count(this);
}