aboutsummaryrefslogtreecommitdiffstats
path: root/smime/gui/e-cert-selector.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-18 16:34:08 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-18 16:34:08 +0800
commitbc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b (patch)
treeeeeb281b9e24aa9e9698bb9f64efba9d307f0675 /smime/gui/e-cert-selector.c
parent095ee2463db06e42c17f7ad1ab8d6d4b8253c935 (diff)
downloadgsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.tar
gsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.tar.gz
gsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.tar.bz2
gsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.tar.lz
gsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.tar.xz
gsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.tar.zst
gsoc2013-evolution-bc7c7799f09b81c85c5f0ff6e0bcdcbaf539f02b.zip
gui/ca-trust-dialog.c (ca_trust_dialog_show) gui/cert-trust-dialog.c
2005-12-18 Tor Lillqvist <tml@novell.com> * gui/ca-trust-dialog.c (ca_trust_dialog_show) * gui/cert-trust-dialog.c (cert_trust_dialog_show) * gui/certificate-manager.c (certificate_manager_config_control_new) * gui/certificate-viewer.c (certificate_viewer_show) * gui/e-cert-selector.c (e_cert_selector_new): Construct glade file pathname at run-time. svn path=/trunk/; revision=30857
Diffstat (limited to 'smime/gui/e-cert-selector.c')
-rw-r--r--smime/gui/e-cert-selector.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/smime/gui/e-cert-selector.c b/smime/gui/e-cert-selector.c
index ac4c6e8785..7241d867b6 100644
--- a/smime/gui/e-cert-selector.c
+++ b/smime/gui/e-cert-selector.c
@@ -40,6 +40,8 @@
#include "e-cert-selector.h"
+#include "e-util/e-util-private.h"
+
struct _ECertSelectorPrivate {
CERTCertList *certlist;
@@ -153,11 +155,16 @@ e_cert_selector_new(int type, const char *currentid)
GladeXML *gui;
GtkWidget *w, *menu;
int n=0, active=0;
+ char *gladefile;
ecs = g_object_new(e_cert_selector_get_type(), NULL);
p = ecs->priv;
- gui = glade_xml_new(EVOLUTION_GLADEDIR "/smime-ui.glade", "cert_selector_vbox", NULL);
+ gladefile = g_build_filename(EVOLUTION_GLADEDIR,
+ "smime-ui.glade",
+ NULL);
+ gui = glade_xml_new(gladefile, "cert_selector_vbox", NULL);
+ g_free (gladefile);
p->menu = glade_xml_get_widget(gui, "cert_menu");
p->description = glade_xml_get_widget(gui, "cert_description");