| 3244 } |
3244 } |
| 3245 |
3245 |
| 3246 if (code == SE_ERR_ASSOCINCOMPLETE || code == SE_ERR_NOASSOC) |
3246 if (code == SE_ERR_ASSOCINCOMPLETE || code == SE_ERR_NOASSOC) |
| 3247 { |
3247 { |
| 3248 purple_notify_error(webview, NULL, |
3248 purple_notify_error(webview, NULL, |
| 3249 _("There is no application configured to open this type of file."), NULL); |
3249 _("There is no application configured to open this type of file."), NULL, NULL); |
| 3250 } |
3250 } |
| 3251 else if (code < 32) |
3251 else if (code < 32) |
| 3252 { |
3252 { |
| 3253 purple_notify_error(webview, NULL, |
3253 purple_notify_error(webview, NULL, |
| 3254 _("An error occurred while opening the file."), NULL); |
3254 _("An error occurred while opening the file."), NULL, NULL); |
| 3255 purple_debug_warning("gtkutils", "filename: %s; code: %d\n", uri, code); |
3255 purple_debug_warning("gtkutils", "filename: %s; code: %d\n", uri, code); |
| 3256 } |
3256 } |
| 3257 #else |
3257 #else |
| 3258 char *command = NULL; |
3258 char *command = NULL; |
| 3259 char *tmp = NULL; |
3259 char *tmp = NULL; |