1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-07 12:25:31 +00:00

Fix missing-declarations warnings all over the codebase

As caught by compiling with `-Wmissing-declarations`
by either making functions static, or declaring them in the header.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-06-02 19:42:25 +02:00
parent 96a7d901c1
commit 2847508034
8 changed files with 25 additions and 15 deletions

View file

@ -25,10 +25,11 @@
#ifndef CALLS_DUMMY_PROVIDER_H__ #ifndef CALLS_DUMMY_PROVIDER_H__
#define CALLS_DUMMY_PROVIDER_H__ #define CALLS_DUMMY_PROVIDER_H__
#include <glib-object.h>
#include "calls-provider.h" #include "calls-provider.h"
#include <glib-object.h>
#include <libpeas/peas.h>
G_BEGIN_DECLS G_BEGIN_DECLS
#define CALLS_TYPE_DUMMY_PROVIDER (calls_dummy_provider_get_type ()) #define CALLS_TYPE_DUMMY_PROVIDER (calls_dummy_provider_get_type ())
@ -38,6 +39,7 @@ G_DECLARE_FINAL_TYPE (CallsDummyProvider, calls_dummy_provider, CALLS, DUMMY_PRO
CallsDummyProvider *calls_dummy_provider_new (void); CallsDummyProvider *calls_dummy_provider_new (void);
void calls_dummy_provider_add_origin (CallsDummyProvider *self, void calls_dummy_provider_add_origin (CallsDummyProvider *self,
const gchar *name); const gchar *name);
void peas_register_types (PeasObjectModule *module);
G_END_DECLS G_END_DECLS

View file

@ -96,7 +96,7 @@ update_status (CallsMMProvider *self)
} }
gboolean static gboolean
mm_provider_contains (CallsMMProvider *self, mm_provider_contains (CallsMMProvider *self,
MMObject *mm_obj) MMObject *mm_obj)
{ {
@ -252,7 +252,7 @@ add_mm_objects (CallsMMProvider *self)
} }
void static void
object_added_cb (CallsMMProvider *self, object_added_cb (CallsMMProvider *self,
GDBusObject *object) GDBusObject *object)
{ {
@ -263,7 +263,7 @@ object_added_cb (CallsMMProvider *self,
} }
void static void
object_removed_cb (CallsMMProvider *self, object_removed_cb (CallsMMProvider *self,
GDBusObject *object) GDBusObject *object)
{ {
@ -326,7 +326,7 @@ mm_appeared_cb (GDBusConnection *connection,
} }
void static void
mm_vanished_cb (GDBusConnection *connection, mm_vanished_cb (GDBusConnection *connection,
const gchar *name, const gchar *name,
CallsMMProvider *self) CallsMMProvider *self)

View file

@ -25,10 +25,11 @@
#ifndef CALLS_MM_PROVIDER_H__ #ifndef CALLS_MM_PROVIDER_H__
#define CALLS_MM_PROVIDER_H__ #define CALLS_MM_PROVIDER_H__
#include "calls-provider.h"
#include <glib-object.h> #include <glib-object.h>
#include <gio/gio.h> #include <gio/gio.h>
#include <libpeas/peas.h>
#include "calls-provider.h"
G_BEGIN_DECLS G_BEGIN_DECLS
@ -36,6 +37,8 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (CallsMMProvider, calls_mm_provider, CALLS, MM_PROVIDER, CallsProvider) G_DECLARE_FINAL_TYPE (CallsMMProvider, calls_mm_provider, CALLS, MM_PROVIDER, CallsProvider)
void peas_register_types (PeasObjectModule *module);
G_END_DECLS G_END_DECLS
#endif /* CALLS_MM_PROVIDER_H__ */ #endif /* CALLS_MM_PROVIDER_H__ */

View file

@ -107,7 +107,7 @@ update_status (CallsOfonoProvider *self)
} }
gboolean static gboolean
ofono_find_origin_index (CallsOfonoProvider *self, ofono_find_origin_index (CallsOfonoProvider *self,
const char *path, const char *path,
guint *index) guint *index)
@ -472,7 +472,7 @@ ofono_appeared_cb (GDBusConnection *connection,
} }
void static void
ofono_vanished_cb (GDBusConnection *connection, ofono_vanished_cb (GDBusConnection *connection,
const gchar *name, const gchar *name,
CallsOfonoProvider *self) CallsOfonoProvider *self)

View file

@ -25,10 +25,11 @@
#ifndef CALLS_OFONO_PROVIDER_H__ #ifndef CALLS_OFONO_PROVIDER_H__
#define CALLS_OFONO_PROVIDER_H__ #define CALLS_OFONO_PROVIDER_H__
#include "calls-provider.h"
#include <glib-object.h> #include <glib-object.h>
#include <gio/gio.h> #include <gio/gio.h>
#include <libpeas/peas.h>
#include "calls-provider.h"
G_BEGIN_DECLS G_BEGIN_DECLS
@ -36,6 +37,8 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (CallsOfonoProvider, calls_ofono_provider, CALLS, OFONO_PROVIDER, CallsProvider) G_DECLARE_FINAL_TYPE (CallsOfonoProvider, calls_ofono_provider, CALLS, OFONO_PROVIDER, CallsProvider)
void peas_register_types (PeasObjectModule *module);
G_END_DECLS G_END_DECLS
#endif /* CALLS_OFONO_PROVIDER_H__ */ #endif /* CALLS_OFONO_PROVIDER_H__ */

View file

@ -29,6 +29,7 @@
#include "calls-sip-origin.h" #include "calls-sip-origin.h"
#include <glib-object.h> #include <glib-object.h>
#include <libpeas/peas.h>
G_BEGIN_DECLS G_BEGIN_DECLS
@ -41,5 +42,6 @@ CallsSipOrigin *calls_sip_provider_add_origin (CallsSipProvider *s
CallsCredentials *credentials, CallsCredentials *credentials,
gint local_port, gint local_port,
gboolean direct_connection); gboolean direct_connection);
void peas_register_types (PeasObjectModule *module);
G_END_DECLS G_END_DECLS

View file

@ -267,7 +267,7 @@ call_selector_child_activated_cb (GtkFlowBox *box,
} }
void static void
add_call (CallsCallWindow *self, add_call (CallsCallWindow *self,
CallsCall *call) CallsCall *call)
{ {
@ -288,7 +288,7 @@ add_call (CallsCallWindow *self,
set_focus (self, display); set_focus (self, display);
} }
void static void
remove_call (CallsCallWindow *self, remove_call (CallsCallWindow *self,
CallsCall *call, CallsCall *call,
const gchar *reason) const gchar *reason)

View file

@ -66,7 +66,7 @@ calls_provider_real_get_status (CallsProvider *self)
return NULL; return NULL;
} }
GListModel * static GListModel *
calls_provider_real_get_origins (CallsProvider *self) calls_provider_real_get_origins (CallsProvider *self)
{ {
return NULL; return NULL;