talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 86e01da0f3528e992f1a6e0874f0a64a81972312
parent 878fcaeb00a9044d13fc19d7658cd680880531f9
Author: Holger Berndt <berndth@gmx.de>
Date:   Wed, 28 Sep 2016 22:22:27 +0200

GData plugin: Make global data static

Diffstat:
Msrc/plugins/gdata/cm_gdata_contacts.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/plugins/gdata/cm_gdata_contacts.c b/src/plugins/gdata/cm_gdata_contacts.c @@ -63,11 +63,11 @@ typedef struct } CmGDataContactsCache; -CmGDataContactsCache contacts_cache; -gboolean cm_gdata_contacts_query_running = FALSE; -gchar *contacts_group_id = NULL; -GDataOAuth2Authorizer *authorizer = NULL; -GDataContactsService *service = NULL; +static CmGDataContactsCache contacts_cache; +static gboolean cm_gdata_contacts_query_running = FALSE; +static gchar *contacts_group_id = NULL; +static GDataOAuth2Authorizer *authorizer = NULL; +static GDataContactsService *service = NULL; static void protect_fields_against_NULL(Contact *contact)