aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar/e-cal-attachment-handler.c
Commit message (Collapse)AuthorAgeFilesLines
* Drop backward-compatibility cruft.Matthew Barnes2011-06-301-3/+0
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-101-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-09-281-1/+1
|
* Re-work my GtkDialog:has-separator workaround.Matthew Barnes2010-09-111-2/+2
| | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone.
* Work around deprecation of gtk_dialog_set_has_separator()Matthew Barnes2010-09-111-0/+2
| | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8.
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-091-5/+5
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-091-1/+1
|
* Camel is now GObject-based.Matthew Barnes2010-04-241-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-04-041-1/+1
|
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-1/+1
|
* Make authentication functionality availableGustavo Noronha Silva2010-01-271-1/+1
| | | | | | | This involves renaming the calendar auth-related functions to have a prefix, and shipping the headers. Part of https://bugzilla.gnome.org/show_bug.cgi?id=608175
* BugĀ 606250 - Remove usage of deprecated GTK+ symbolsMatthew Barnes2010-01-081-2/+2
| | | | Several GtkWidget macros were recently deprecated.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-0/+512
- Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.