diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-11 03:54:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-11 03:54:08 +0800 |
commit | cdbaf741c1cb50b41c03c17f9948f6f29b9be021 (patch) | |
tree | bfa83a8d0988681276d97e45c54225442e06c8a5 /calendar/module | |
parent | 26185023a8319ae52ea44aac672ec5b957761d0f (diff) | |
download | gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.gz gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.zst gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.zip |
Add G_MODULE_EXPORT to exported module functions.
Diffstat (limited to 'calendar/module')
-rw-r--r-- | calendar/module/evolution-module-calendar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/module/evolution-module-calendar.c b/calendar/module/evolution-module-calendar.c index b1d5f97744..e89005fde6 100644 --- a/calendar/module/evolution-module-calendar.c +++ b/calendar/module/evolution-module-calendar.c @@ -38,7 +38,7 @@ void e_module_load (GTypeModule *type_module); void e_module_unload (GTypeModule *type_module); -void +G_MODULE_EXPORT void e_module_load (GTypeModule *type_module) { /* Register dynamically loaded types. */ @@ -59,7 +59,7 @@ e_module_load (GTypeModule *type_module) e_task_shell_view_register_type (type_module); } -void +G_MODULE_EXPORT void e_module_unload (GTypeModule *type_module) { } |