mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-10 19:33:28 +00:00
revert
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@432 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
13
src/core.c
13
src/core.c
@@ -230,19 +230,6 @@ void MwDestroyWidget(MwWidget handle) {
|
|||||||
handle->destroyed = 1;
|
handle->destroyed = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MwWidgetExecute(MwWidget handle, const char* func_name, void* out, ...) {
|
|
||||||
va_list args;
|
|
||||||
va_start(args, out);
|
|
||||||
va_end(args);
|
|
||||||
MwVaWidgetExecute(handle, func_name, out, args);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MwVaWidgetExecute(MwWidget handle, const char* func_name, void* out, va_list va) {
|
|
||||||
if(handle->widget_class->execute != NULL) {
|
|
||||||
handle->widget_class->execute(handle, func_name, out, va);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void clean_destroy_queue(MwWidget handle) {
|
static void clean_destroy_queue(MwWidget handle) {
|
||||||
int i, j;
|
int i, j;
|
||||||
for(i = 0; i < arrlen(handle->destroy_queue); i++) {
|
for(i = 0; i < arrlen(handle->destroy_queue); i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user