2007-11-22 [wwp] 3.1.0cvs19
authorTristan Chabredier <wwp@claws-mail.org>
Thu, 22 Nov 2007 11:28:34 +0000 (11:28 +0000)
committerTristan Chabredier <wwp@claws-mail.org>
Thu, 22 Nov 2007 11:28:34 +0000 (11:28 +0000)
* src/prefs_themes.c
Yet another misuse of get_rc_dir(), still related
to user themes. Completes 3.1.0cvs18.

ChangeLog
PATCHSETS
configure.ac
src/prefs_themes.c

index 9961c561e8bde00815fe5dd458545e5a1be7b142..d462e541f40e461d2feee68ebdb70f0b938ba2a2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-22 [wwp]       3.1.0cvs19
+
+       * src/prefs_themes.c
+               Yet another misuse of get_rc_dir(), still related
+               to user themes. Completes 3.1.0cvs18.
+
 2007-11-22 [wwp]       3.1.0cvs18
 
        * src/stock_pixmap.c
index fd129f079c5ac80c3a23474435366eebb2ac5dbc..3a03e01cb957b057124852b90f1ea05ff0095b6e 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.382.2.426 -r 1.382.2.427 src/compose.c;  ) > 3.1.0cvs16.patchset
 ( cvs diff -u -r 1.1.2.12 -r 1.1.2.13 src/edittags.c;  cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/edittags.h;  cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/common/tags.c;  cvs diff -u -r 1.1.2.2 -r 1.1.2.3 src/common/tags.h;  ) > 3.1.0cvs17.patchset
 ( cvs diff -u -r 1.25.2.49 -r 1.25.2.50 src/stock_pixmap.c;  ) > 3.1.0cvs18.patchset
+( cvs diff -u -r 1.3.2.53 -r 1.3.2.54 src/prefs_themes.c;  ) > 3.1.0cvs19.patchset
index 620c6acf95b21cda7e9214f2d06acfaf34a476e1..1bbf5cc45a2f63dc800182ada5966bb450332fce 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=1
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=18
+EXTRA_VERSION=19
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index e8c2c0c7c8d37baa0474010721f042bd415b316d..da9e7d8d6e1011c9f307b568abcf8e104545bd58 100644 (file)
@@ -537,8 +537,8 @@ static void prefs_themes_btn_install_clicked_cb(GtkWidget *widget, gpointer data
        }
        g_free(alert_title);
        if (cinfo->dest == NULL) {
-               cinfo->dest = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, get_rc_dir(),
-                                         G_DIR_SEPARATOR_S, PIXMAP_THEME_DIR, G_DIR_SEPARATOR_S,
+               cinfo->dest = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
+                                         PIXMAP_THEME_DIR, G_DIR_SEPARATOR_S,
                                          themename, NULL);
        }
        if (TRUE == is_dir_exist(cinfo->dest)) {