2010-03-21 [pawel] 3.7.5cvs35
authorPaweł Pękala <c0rn@gazeta.pl>
Sun, 21 Mar 2010 18:46:31 +0000 (18:46 +0000)
committerPaweł Pękala <c0rn@gazeta.pl>
Sun, 21 Mar 2010 18:46:31 +0000 (18:46 +0000)
* src/addrgather.c
Remove superfluous gtk_widget_show_all()
* src/mimeview.c
Add forgotten colon
* src/common/utils.c
Return correct type

ChangeLog
PATCHSETS
configure.ac
src/addrgather.c
src/common/utils.c
src/mimeview.c

index 39ef86c153efa7bc81d33299f882ba2b196e4f40..6221fa5746d5da64cc4b6ceeb90b856267b0c6a4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-21 [pawel]     3.7.5cvs35
+
+       * src/addrgather.c
+               Remove superfluous gtk_widget_show_all()
+       * src/mimeview.c
+               Add forgotten colon
+       * src/common/utils.c
+               Return correct type
+
 2010-03-21 [pawel]     3.7.5cvs34
 
        * src/main.c
index 5ea812575014bb97a6bb08e7ae183a1791eef899..3449f23d0142844bc9093758dbe5effbb5ad2915 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.1.2.2 -r 1.1.2.3 manual/de/glossary.xml;  ) > 3.7.5cvs32.patchset
 ( cvs diff -u -r 1.5.2.29 -r 1.5.2.30 po/zh_CN.po;  ) > 3.7.5cvs33.patchset
 ( cvs diff -u -r 1.115.2.225 -r 1.115.2.226 src/main.c;  cvs diff -u -r 1.1.2.89 -r 1.1.2.90 src/gtk/quicksearch.c;  cvs diff -u -r 1.1.2.18 -r 1.1.2.19 src/gtk/quicksearch.h;  ) > 3.7.5cvs34.patchset
+( cvs diff -u -r 1.5.10.30 -r 1.5.10.31 src/addrgather.c;  cvs diff -u -r 1.83.2.160 -r 1.83.2.161 src/mimeview.c;  cvs diff -u -r 1.36.2.183 -r 1.36.2.184 src/common/utils.c;  ) > 3.7.5cvs35.patchset
index 7ec9be9034a5d806f87c6af417d972a3c497eb9a..f28ec01ae7204d27702c69f7f0b6bfbd5856d81f 100644 (file)
@@ -12,7 +12,7 @@ MINOR_VERSION=7
 MICRO_VERSION=5
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=34
+EXTRA_VERSION=35
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index e9a7f68cbf77787cddc04a11bf04f333a7270ea0..44c5ed2a67e0da4d0fb83ed36f9734039e883ac4 100644 (file)
@@ -480,8 +480,6 @@ static void addrgather_dlg_create(void)
        gtk_window_set_default_size(GTK_WINDOW(window), prefs_common.addrgather_width,
                                    prefs_common.addrgather_height);
 
-       gtk_widget_show_all(vbox);
-
        addrgather_dlg.window     = window;
        addrgather_dlg.notebook   = notebook;
        addrgather_dlg.btnOk      = btnOk;
index 2dccd111f810c1e1727a86fb9a7536da3d691704..32baef37a012e14795eeb2b2cc1a3b6cc7624ae1 100644 (file)
@@ -1128,7 +1128,7 @@ static const gchar * line_has_quote_char_last(const gchar * str, const gchar *qu
        int i;
 
        if (quote_chars == NULL)
-               return FALSE;
+               return NULL;
 
        for (i = 0; i < strlen(quote_chars); i++) {
                tmp_pos = strrchr (str, quote_chars[i]);
index b8176e7cafc535602e0bfd3fc9bb37d3bb48aa8c..f1e7986129cb94bf1db7263eff463b51dbc351d2 100644 (file)
@@ -2352,12 +2352,12 @@ static void icon_list_append_icon (MimeView *mimeview, MimeInfo *mimeinfo)
 #if GTK_CHECK_VERSION(2,12,0)
                tiptmp = g_strconcat(tip, "\n<b>",
                                prefs_common.attach_desc && mimeinfo->description ?
-                               _("Description") : _("Filename:"),
+                               _("Description:") : _("Filename:"),
                                " </b>", tmp, NULL);
 #else
                tiptmp = g_strconcat(tip, "\n",
                                prefs_common.attach_desc && mimeinfo->description ?
-                               _("Description") : _("Filename:"),
+                               _("Description:") : _("Filename:"),
                                " ", tmp, NULL);
 #endif
                g_free(tip);