diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/test/evolution-module-test.c | 4 |
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) { } |