aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-11 03:54:08 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-11 03:54:08 +0800
commitcdbaf741c1cb50b41c03c17f9948f6f29b9be021 (patch)
treebfa83a8d0988681276d97e45c54225442e06c8a5 /shell
parent26185023a8319ae52ea44aac672ec5b957761d0f (diff)
downloadgsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar
gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.gz
gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.bz2
gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.lz
gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.xz
gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.tar.zst
gsoc2013-evolution-cdbaf741c1cb50b41c03c17f9948f6f29b9be021.zip
Add G_MODULE_EXPORT to exported module functions.
Diffstat (limited to 'shell')
-rw-r--r--shell/test/evolution-module-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/test/evolution-module-test.c b/shell/test/evolution-module-test.c
index 5f3bb26997..ceae63cf7c 100644
--- a/shell/test/evolution-module-test.c
+++ b/shell/test/evolution-module-test.c
@@ -26,7 +26,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. */
@@ -35,7 +35,7 @@ e_module_load (GTypeModule *type_module)
e_test_shell_view_register_type (type_module);
}
-void
+G_MODULE_EXPORT void
e_module_unload (GTypeModule *type_module)
{
}