From: Paul Date: Mon, 17 Mar 2014 17:48:26 +0000 (+0000) Subject: tidy up and get the string translated X-Git-Tag: 3.10.0~178 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=a1ba2ee6ef25eec23764761975f7033954af7c73 tidy up and get the string translated --- diff --git a/po/POTFILES.in b/po/POTFILES.in index 9d7a8a314..3df7c367d 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -115,6 +115,7 @@ src/plugins/notification/notification_trayicon.c src/plugins/pdf_viewer/poppler_viewer.c src/plugins/python/composewindowtype.c src/plugins/python/python_plugin.c +src/plugins/pgpcore/autocompletion.c src/plugins/pgpcore/passphrase.c src/plugins/pgpcore/pgp_viewer.c src/plugins/pgpcore/plugin.c diff --git a/src/plugins/pgpcore/autocompletion.c b/src/plugins/pgpcore/autocompletion.c index f34185bb9..2355bd81d 100644 --- a/src/plugins/pgpcore/autocompletion.c +++ b/src/plugins/pgpcore/autocompletion.c @@ -34,6 +34,10 @@ #include #include "autocompletion.h" +#include "addr_compl.h" +#include "prefs_gpg.h" +#include "hooks.h" +#include "utils.h" static guint autocompletion_hook_id = 0; diff --git a/src/plugins/pgpcore/autocompletion.h b/src/plugins/pgpcore/autocompletion.h index c1711ab18..cfbfd49ea 100644 --- a/src/plugins/pgpcore/autocompletion.h +++ b/src/plugins/pgpcore/autocompletion.h @@ -1,7 +1,7 @@ /* * PGP/Core keyring autocompletion * - * Copyright (C) 2014 Christian Hesse + * Copyright (C) 2014 Christian Hesse and the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,29 +18,11 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef GPGMEGTK_AUTOCOMPLETION_H -#define GPGMEGTK_AUTOCOMPLETION_H - -#include -#include -#include - -#include -#include - -#include -#include - -#include "addr_compl.h" -#include "claws.h" -#include "hooks.h" -#include "procmsg.h" -#include "utils.h" - -static gboolean pgp_autocompletion_hook(gpointer source, gpointer data); +#ifndef AUTOCOMPLETION_H +#define AUTOCOMPLETION_H gboolean autocompletion_done(void); gint autocompletion_init(gchar ** error); -#endif /* GPGMEGTK_AUTOCOMPLETION_H */ +#endif /* AUTOCOMPLETION_H */