aboutsummaryrefslogtreecommitdiffstats
path: root/modules/plugin-mono
Commit message (Collapse)AuthorAgeFilesLines
* Coding style and whitespace cleanup.Matthew Barnes2011-09-141-9/+11
|
* plugin-mono: Remove Camel.cs and Evolution.csMatthew Barnes2011-09-142-1368/+0
| | | | | | These files are hopelessly out of date, and don't appear to be used for anything anyway. The only sustainable way to provide language bindings for Evolution is to generate them through gobject-introspection.
* Prefer g_seekable_seek() over camel_stream_reset().Matthew Barnes2011-09-141-6/+0
| | | | | | | | | When a stream is obviously a file or memory stream (both of which implement the GSeekable interface), use g_seekable_seek() instead of camel_stream_reset(). This is helping me discover if it's safe to remove camel_stream_reset(). We want to eventually move to GIO streams, which have no reset method.
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-06-302-0/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+3
|
* Whitespace and coding style cleanups.Matthew Barnes2011-06-301-1/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+2
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-06-301-5/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-271-1/+1
|
* Bug 576165 - SIGSEGV in e_plugin_mono_register_type (bnc)Chenthill Palanisamy2010-05-261-3/+5
|
* Stop relying on CamelObject meta-data.Matthew Barnes2010-04-011-62/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-02-081-2/+5
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-3/+4
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-306-0/+1829
- 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.