glwin: Drop close on exit

Not necessary.
This commit is contained in:
Kim Woelders 2022-03-10 19:22:28 +01:00
parent 95d47591cf
commit ba2e0ab871
1 changed files with 2 additions and 16 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2007-2021 Kim Woelders
* Copyright (C) 2007-2022 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
@ -725,20 +725,6 @@ GlwinExit(void)
* GLwin Module
*/
static void
GlwinSighan(int sig, void *prm __UNUSED__)
{
switch (sig)
{
case ESIGNAL_START:
break;
case ESIGNAL_EXIT:
GlwinExit();
break;
}
}
static void
GlwinIpc(const char *params)
{
@ -772,7 +758,7 @@ extern const EModule ModGlwin;
const EModule ModGlwin = {
"glwin", NULL,
GlwinSighan,
NULL,
MOD_ITEMS(GlwinIpcArray),
MOD_ITEMS(GlwinCfgItems)
};