X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-runtime.c;h=4e9899038200f17f05cb0c31293aba882eb47500;hb=e7d49a2f1e83eb5b8035b416b00230e12213a0ee;hp=890b8db74ae31c8226ce05048881829638afbaea;hpb=e374da56f67092cecb1572dd4bee2ca34e0bc04c;p=modest diff --git a/src/modest-runtime.c b/src/modest-runtime.c index 890b8db..4e98990 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 = TRUE; + /* * 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; +}