Changeset 1919
- Timestamp:
- 05/08/07 18:16:07
- Files:
-
- trunk/libtinymail-camel/tny-camel-send-queue.c (modified) (1 diff)
- trunk/libtinymail-camel/tny-camel-store-account.c (modified) (5 diffs)
- trunk/libtinymail-maemo/tny-maemo-platform-factory.c (modified) (1 diff)
- trunk/libtinymail/tny-error.c (modified) (1 diff)
- trunk/libtinymail/tny-status.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail-camel/tny-camel-send-queue.c
r1866 r1919 133 133 { 134 134 TnyHeader *header; 135 TnyMsg *msg ;135 TnyMsg *msg = NULL; 136 136 137 137 g_mutex_lock (priv->sending_lock); trunk/libtinymail-camel/tny-camel-store-account.c
r1879 r1919 491 491 if (!_tny_session_check_operation (apriv->session, err, 492 492 TNY_FOLDER_STORE_ERROR, TNY_FOLDER_STORE_ERROR_CREATE_FOLDER)) 493 return ;493 return NULL; 494 494 495 495 if (!name || strlen (name) <= 0) … … 923 923 if (!_tny_session_check_operation (apriv->session, err, 924 924 TNY_FOLDER_STORE_ERROR, TNY_FOLDER_STORE_ERROR_GET_FOLDERS)) 925 return ;925 return NULL; 926 926 927 927 if (apriv->service == NULL || !CAMEL_IS_SERVICE (apriv->service)) … … 932 932 camel_exception_get_description (apriv->ex)); 933 933 _tny_session_stop_operation (apriv->session); 934 return ;934 return NULL; 935 935 } 936 936 … … 947 947 camel_object_unref (CAMEL_OBJECT (store)); 948 948 _tny_session_stop_operation (apriv->session); 949 return ;949 return NULL; 950 950 } 951 951 … … 973 973 } 974 974 _tny_session_stop_operation (apriv->session); 975 return ;975 return NULL; 976 976 } 977 977 trunk/libtinymail-maemo/tny-maemo-platform-factory.c
r1783 r1919 53 53 tny_maemo_platform_factory_new_password_getter (TnyPlatformFactory *self) 54 54 { 55 return tny_gtk_password_dialog_new ();55 return TNY_PASSWORD_GETTER (tny_gtk_password_dialog_new ()); 56 56 } 57 57 trunk/libtinymail/tny-error.c
r1918 r1919 81 81 etype = g_enum_register_static ("TnyError", values); 82 82 } 83 return etype; 83 84 } trunk/libtinymail/tny-status.c
r1884 r1919 66 66 etype = g_enum_register_static ("TnyStatus", values); 67 67 } 68 return etype; 68 69 } 69 70
