Changeset 2642
- Timestamp:
- 08/15/07 14:21:21
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-maemo/tny-maemo-conic-device.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2641 r2642 1 2007-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 1 14 2007-08-15 Murray Cumming <murrayc@murrayc.com> 2 15 trunk/libtinymail-maemo/tny-maemo-conic-device.c
r2641 r2642 698 698 TnyMaemoConicDevicePriv *priv = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (self); 699 699 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; 701 711 702 712 #ifndef MAEMO_CONIC_DUMMY
