summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/hardinfo.h2
-rw-r--r--includes/shell.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/includes/hardinfo.h b/includes/hardinfo.h
index 010af922..34586549 100644
--- a/includes/hardinfo.h
+++ b/includes/hardinfo.h
@@ -134,7 +134,7 @@ GSList *modules_get_list(void);
GSList *modules_load_selected(void);
GSList *modules_load_all(void);
void module_unload_all(void);
-ModuleAbout *module_get_about(ShellModule *module);
+const ModuleAbout *module_get_about(ShellModule *module);
gchar *seconds_to_string(unsigned int seconds);
gchar *h_strdup_cprintf(const gchar *format, gchar *source, ...);
diff --git a/includes/shell.h b/includes/shell.h
index 927a9adf..3f0ef47e 100644
--- a/includes/shell.h
+++ b/includes/shell.h
@@ -139,7 +139,7 @@ struct _ShellModule {
GdkPixbuf *icon;
GModule *dll;
- gpointer (*aboutfunc) ();
+ gconstpointer (*aboutfunc)(void);
gchar *(*summaryfunc) ();
void (*deinit) ();