returning 0 stops the delete event to be called in the screenlock module.

So we return 1.

Patch from sECuRE_


SVN revision: 34077
This commit is contained in:
doursse 2008-03-22 08:04:12 +00:00 committed by doursse
parent b17b7b29e2
commit 1dfffe770b
1 changed files with 1 additions and 1 deletions

View File

@ -446,5 +446,5 @@ _battery_cb_exe_del(void *data, int type, void *event)
ev = event;
if (ev->exe != battery_config->batget_exe) return 1;
battery_config->batget_exe = NULL;
return 0;
return 1;
}