diff options
author | rbuj <[email protected]> | 2021-03-08 13:08:33 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-03-13 23:06:22 +0100 |
commit | 3b61d747f8e7f5e92912e45dc5827909f8b98ed0 (patch) | |
tree | 75d8754774c70b3ee61c6cb449c02eca282899e8 /mate-dictionary/src | |
parent | 0a908588f0612d3fc26e79c454253e80dc8c9e10 (diff) | |
download | mate-utils-3b61d747f8e7f5e92912e45dc5827909f8b98ed0.tar.bz2 mate-utils-3b61d747f8e7f5e92912e45dc5827909f8b98ed0.tar.xz |
Remove warnings about missing prototypes
Diffstat (limited to 'mate-dictionary/src')
-rw-r--r-- | mate-dictionary/src/gdict-sidebar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-dictionary/src/gdict-sidebar.c b/mate-dictionary/src/gdict-sidebar.c index 5d2ea36e..98f87fd7 100644 --- a/mate-dictionary/src/gdict-sidebar.c +++ b/mate-dictionary/src/gdict-sidebar.c @@ -71,7 +71,7 @@ static GQuark sidebar_page_id_quark = 0; G_DEFINE_TYPE_WITH_PRIVATE (GdictSidebar, gdict_sidebar, GTK_TYPE_BOX); -SidebarPage * +static SidebarPage * sidebar_page_new (const gchar *id, const gchar *name, GtkWidget *widget) @@ -89,7 +89,7 @@ sidebar_page_new (const gchar *id, return page; } -void +static void sidebar_page_free (SidebarPage *page) { if (G_LIKELY (page)) |