diff options
Diffstat (limited to 'shell/e-storage.h')
-rw-r--r-- | shell/e-storage.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/shell/e-storage.h b/shell/e-storage.h index 22d87de8f9..43ad6f442b 100644 --- a/shell/e-storage.h +++ b/shell/e-storage.h @@ -78,10 +78,10 @@ struct _EStorageClass { /* Signals. */ - void * (* new_folder) (EStorage *storage, const char *path); - void * (* updated_folder) (EStorage *storage, const char *path); - void * (* removed_folder) (EStorage *storage, const char *path); - void * (* close_folder) (EStorage *storage, const char *path); + void (* new_folder) (EStorage *storage, const char *path); + void (* updated_folder) (EStorage *storage, const char *path); + void (* removed_folder) (EStorage *storage, const char *path); + void (* close_folder) (EStorage *storage, const char *path); /* Virtual methods. */ @@ -110,6 +110,7 @@ struct _EStorageClass { void (* async_open_folder) (EStorage *storage, const char *path); + }; |