diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2008-11-06 17:25:24 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-06-12 00:06:31 +0800 |
commit | 2aeffc8776f7e19a44a619b3de26f748d0346b8d (patch) | |
tree | a02589187dee5ac556b2ab322196406230b97ac3 | |
parent | 1ce531c29108e9bf0a90a4c013283b9115598bb9 (diff) | |
download | gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.tar gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.tar.gz gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.tar.bz2 gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.tar.lz gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.tar.xz gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.tar.zst gsoc2013-empathy-2aeffc8776f7e19a44a619b3de26f748d0346b8d.zip |
WebKit is expecting an absolute path to a file name as the last parameter of webkit_web_view_load_html_string. But adding a extra / at the end of
the path works also fine (patch to be attached).
-rw-r--r-- | libempathy-gtk/empathy-theme-adium.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c index 545088c50..b1da87bc8 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -85,7 +85,7 @@ theme_adium_load (EmpathyThemeAdium *theme) guint len = 0; guint i = 0; - priv->basedir = g_build_filename (priv->path, "Contents", "Resources", NULL); + priv->basedir = g_strconcat (priv->path, G_DIR_SEPARATOR_S "Contents" G_DIR_SEPARATOR_S "Resources" G_DIR_SEPARATOR_S, NULL); /* Load html files */ file = g_build_filename (priv->basedir, "Incoming", "Content.html", NULL); |