aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/junk-settings.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-18 02:45:07 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-18 02:45:07 +0800
commit9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff (patch)
tree8f63d0f411c9060e1bc996cbcb300f2a085a6754 /plugins/groupwise-features/junk-settings.c
parentdf6c612eaa2e2f1b1b691d1f56d7079c9700a826 (diff)
downloadgsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.gz
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.bz2
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.lz
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.xz
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.tar.zst
gsoc2013-evolution-9f37d3bd9a7f32dd12f05cb6503997dcf6ea9dff.zip
junk-settings.c proxy-login.c proxy.c Construct glade file name at
2005-12-17 Tor Lillqvist <tml@novell.com> * junk-settings.c * proxy-login.c * proxy.c * share-folder.c: Construct glade file name at run-time. * process-meeting.c (find_attendee): Use g_ascii_strcasecmp() instead of g_strcasecmp(). svn path=/trunk/; revision=30844
Diffstat (limited to 'plugins/groupwise-features/junk-settings.c')
-rw-r--r--plugins/groupwise-features/junk-settings.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/groupwise-features/junk-settings.c b/plugins/groupwise-features/junk-settings.c
index c2bba7ab1d..90ea657cf2 100644
--- a/plugins/groupwise-features/junk-settings.c
+++ b/plugins/groupwise-features/junk-settings.c
@@ -38,6 +38,7 @@
#include <libgnomeui/gnome-ui-init.h>
#include <libgnome/gnome-init.h>
#include <e-util/e-error.h>
+#include <e-util/e-util-private.h>
#include <e-gw-connection.h>
#define ROOTNODE "vboxSettings"
#define d(x)
@@ -375,8 +376,14 @@ junk_settings_construct (JunkSettings *js)
{
GladeXML *xml;
GtkWidget *box;
+ char *gladefile;
+
+ gladefile = g_build_filename (EVOLUTION_GLADEDIR,
+ "junk-settings.glade",
+ NULL);
+ xml = glade_xml_new (gladefile, ROOTNODE, NULL);
+ g_free (gladefile);
- xml = glade_xml_new (EVOLUTION_GLADEDIR "/junk-settings.glade", ROOTNODE, NULL);
js->xml =xml;
if (!js->xml) {