Changeset 2642

Show
Ignore:
Timestamp:
08/15/07 14:21:21
Author:
murrayc
Message:

2007-08-15 Murray Cumming <murrayc@murrayc.com>

* libtinymail-maemo/tny-maemo-conic-device.c:
(tny_maemo_conic_device_instance_init): Change the is_online default
to TRUE.
* This is a hack that fixes a problem
* (Our signal is not emitted before the gtk mainloop is started,
* because we use an idle handler for that and we don't know how to
* detect when the mainloop has not yet started.
* The downside is that we now don't know that we are really offline,
* so we can't ask the user to go online.
* This must be fixed properly.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r2641 r2642  
     12007-08-15  Murray Cumming  <murrayc@murrayc.com> 
     2 
     3        * libtinymail-maemo/tny-maemo-conic-device.c: 
     4        (tny_maemo_conic_device_instance_init): Change the is_online default  
     5        to TRUE. 
     6        * This is a hack that fixes a problem 
     7        * (Our signal is not emitted before the gtk mainloop is started,  
     8        * because we use an idle handler for that and we don't know how to  
     9        * detect when the mainloop has not yet started. 
     10        * The downside is that we now don't know that we are really offline, 
     11        * so we can't ask the user to go online. 
     12        * This must be fixed properly. 
     13 
    1142007-08-15  Murray Cumming  <murrayc@murrayc.com> 
    215 
  • trunk/libtinymail-maemo/tny-maemo-conic-device.c

    r2641 r2642  
    698698        TnyMaemoConicDevicePriv *priv = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (self); 
    699699        priv->iap = NULL; 
    700         priv->is_online = FALSE;  
     700        /* priv->is_online = FALSE; */ 
     701         
     702        /* TODO: This is a hack that fixes a problem 
     703         * (Our signal is not emitted before the gtk mainloop is started,  
     704         * because we use an idle handler for that and we don't know how to  
     705         * detect when the mainloop has not yet started. 
     706         * The downside is that we now don't know that we are really offline, 
     707         * so we can't ask the user to go online. 
     708         * This must be fixed properly. 
     709         */ 
     710        priv->is_online = TRUE;  
    701711         
    702712        #ifndef MAEMO_CONIC_DUMMY