remove MwMessageBoxDestroy, introduce destroy_inject
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-20 02:04:43 +09:00
commit a59154d5f1
Signed by: nishi
GPG key ID: 27EF69B208EB9343
9 changed files with 22 additions and 22 deletions

View file

@ -7,7 +7,7 @@ MwWidget wmain;
void destroy(MwWidget handle, void* user, void* call) {
(void)handle;
(void)call;
MwMessageBoxDestroy(user);
MwDestroyWidget(user);
}
void activate(MwWidget handle, void* user, void* call) {

View file

@ -3,7 +3,7 @@
void ok(MwWidget handle, void* user, void* call) {
(void)handle;
(void)call;
MwMessageBoxDestroy(user);
MwDestroyWidget(user);
}
void spawn(MwWidget handle, void* user, void* call) {

View file

@ -5,7 +5,7 @@ MwWidget wmain;
void destroy(MwWidget handle, void* user, void* call) {
(void)handle;
(void)call;
MwMessageBoxDestroy(user);
MwDestroyWidget(user);
}
void activate(MwWidget handle, void* user, void* call) {