X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-runtime.c;h=f3ec8b6e0268c4d91e18d45f28fa8d6acf43c522;hb=1a0afca839a2071757280fac8a2705bfe558275b;hp=890b8db74ae31c8226ce05048881829638afbaea;hpb=e374da56f67092cecb1572dd4bee2ca34e0bc04c;p=modest diff --git a/src/modest-runtime.c b/src/modest-runtime.c index 890b8db..f3ec8b6 100644 --- a/src/modest-runtime.c +++ b/src/modest-runtime.c @@ -57,6 +57,9 @@ static ModestTnyAccountStore *_account_store = NULL; /* Signal handlers for the send queues */ static GSList *_sig_handlers = NULL; +/* will modest shut down when window list and mail op queue are empty? */ +static gboolean _allow_shutdown = FALSE; + /* * private functions declared in modest-runtime-priv.h - * only to be called from modest-init.c @@ -321,6 +324,14 @@ modest_runtime_get_debug_flags () return debug_flags; } +gboolean +modest_runtime_get_allow_shutdown (void) +{ + return _allow_shutdown; +} - - +void +modest_runtime_set_allow_shutdown (gboolean allow) +{ + _allow_shutdown = allow; +}