Changeset 2205
- Timestamp:
- 06/18/07 13:44:05
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/libtinymail-camel/camel-lite/ChangeLog (modified) (1 diff)
- trunk/libtinymail-maemo/tny-maemo-conic-device.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2204 r2205 1 2007-06-18 Murray Cumming <murrayc@murrayc.com> 2 3 * libtinymail-maemo/tny-maemo-conic-device.c: 4 (on_connection_event), (tny_maemo_conic_device_get_iap_list): 5 Fix some warnings reported in tinymail trac ticket #66: 6 http://tinymail.org/trac/tinymail/ticket/66 7 1 8 2007-06-18 Philip Van Hoof <pvanhoof@gnome.org> 2 9 trunk/libtinymail-camel/camel-lite/ChangeLog
r2113 r2205 1 2007-06-18 set REAL_NAME environment variable <murrayc@murrayc-desktop> 2 3 reviewed by: <delete if not using a buddy> 4 5 * COPYING: 6 1 7 Note: Please use this ChangeLog file only for merge changes (from upstream to 2 8 this version, and the other way around). Changes to camel-lite that are trunk/libtinymail-maemo/tny-maemo-conic-device.c
r2067 r2205 22 22 #include <glib-object.h> 23 23 #include <tny-maemo-conic-device.h> 24 #include <string.h> /* For strcmp() */ 24 25 25 26 #ifdef MAEMO_CONIC_DUMMY … … 137 138 priv->attempting_connection = FALSE; 138 139 139 g_message ("new status: DISCONNECTED" , priv->iap);140 g_message ("new status: DISCONNECTED"); 140 141 break; 141 142 case CON_IC_STATUS_DISCONNECTING: 142 143 is_online = FALSE; 143 g_message ("new status: DISCONNECTING" , priv->iap);144 g_message ("new status: DISCONNECTING"); 144 145 break; 145 146 default: … … 337 338 tny_maemo_conic_device_get_iap_list (TnyMaemoConicDevice *self) 338 339 { 339 TnyMaemoConicDevicePriv *priv;340 341 340 g_return_val_if_fail (TNY_IS_MAEMO_CONIC_DEVICE(self), NULL); 342 341 … … 370 369 return result; 371 370 #else 372 priv = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (self); 371 TnyMaemoConicDevicePriv *priv 372 = TNY_MAEMO_CONIC_DEVICE_GET_PRIVATE (self); 373 373 g_return_val_if_fail (priv->cnx, NULL); 374 374
