Changeset 2014
- Timestamp:
- 05/20/07 15:10:40
- Files:
-
- trunk/libtinymail/tny-account-store.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libtinymail/tny-account-store.c
r1939 r2014 84 84 * which should be used to determine what to show to the user. 85 85 * 86 * This jump-to-the-ui method implements showing a message dialog appropriate for the @error87 * and @type as message type. It will return TRUE if the reply was88 * affirmative or FALSE if not.86 * This jump-to-the-ui method implements showing a message dialog appropriate 87 * for the @error and @type as message type. It will return TRUE if the reply 88 * was affirmative or FALSE if not. 89 89 * 90 90 * Implementors: when implementing a platform-specific library, you must … … 117 117 * break; 118 118 * } 119 *120 119 * const gchar *prompt = NULL; 121 120 * switch (error->code) … … 129 128 * break; 130 129 * } 131 * 132 * if (!prompt) 133 * return FALSE; 134 * 130 * if (!prompt) 131 * return FALSE; 135 132 * gboolean retval = FALSE; 136 133 * dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, … … 144 141 * 145 142 * Return value: Whether the user pressed Ok/Yes (TRUE) or Cancel/No (FALSE) 146 *147 143 **/ 148 144 gboolean
