2006-03-26 [wwp] 2.0.0cvs174
* src/common/quoted-printable.c * src/addressbook.c fixed some compilation warnings (incl. one reported by Pawel Pekala).
This commit is contained in:
parent
11911ffee3
commit
7084332688
5 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-03-26 [wwp] 2.0.0cvs174
|
||||
|
||||
* src/common/quoted-printable.c
|
||||
* src/addressbook.c
|
||||
fixed some compilation warnings (incl. one reported by Pawel Pekala).
|
||||
|
||||
2006-03-26 [colin] 2.0.0cvs173
|
||||
|
||||
* src/quote_fmt_parse.y
|
||||
|
|
|
@ -1359,3 +1359,4 @@
|
|||
( cvs diff -u -r 1.75.2.18 -r 1.75.2.19 src/matcher.c; ) > 2.0.0cvs171.patchset
|
||||
( cvs diff -u -r 1.47.2.27 -r 1.47.2.28 src/procheader.c; cvs diff -u -r 1.382.2.255 -r 1.382.2.256 src/compose.c; ) > 2.0.0cvs172.patchset
|
||||
( cvs diff -u -r 1.22.2.19 -r 1.22.2.20 src/quote_fmt_parse.y; ) > 2.0.0cvs173.patchset
|
||||
( cvs diff -u -r 1.3.2.6 -r 1.3.2.7 src/common/quoted-printable.c; cvs diff -u -r 1.60.2.55 -r 1.60.2.56 src/addressbook.c; ) > 2.0.0cvs174.patchset
|
||||
|
|
|
@ -11,7 +11,7 @@ MINOR_VERSION=0
|
|||
MICRO_VERSION=0
|
||||
INTERFACE_AGE=0
|
||||
BINARY_AGE=0
|
||||
EXTRA_VERSION=173
|
||||
EXTRA_VERSION=174
|
||||
EXTRA_RELEASE=
|
||||
EXTRA_GTK2_VERSION=
|
||||
|
||||
|
|
|
@ -924,7 +924,7 @@ static void addressbook_create(void)
|
|||
gtk_clist_set_column_width(GTK_CLIST(clist), COL_ADDRESS,
|
||||
COL_ADDRESS_WIDTH);
|
||||
|
||||
addressbook_sort_list(clist, COL_NAME, GTK_SORT_ASCENDING);
|
||||
addressbook_sort_list(GTK_CLIST(clist), COL_NAME, GTK_SORT_ASCENDING);
|
||||
g_signal_connect(G_OBJECT(GTK_CLIST(clist)->column[COL_NAME].button),
|
||||
"clicked", G_CALLBACK(addressbook_name_clicked), clist);
|
||||
g_signal_connect(G_OBJECT(GTK_CLIST(clist)->column[COL_ADDRESS].button),
|
||||
|
|
|
@ -114,7 +114,8 @@ gint qp_decode_line(gchar *str)
|
|||
|
||||
gint qp_decode_const(gchar *out, gint avail, const gchar *str)
|
||||
{
|
||||
gchar *inp = str, *outp = out;
|
||||
const gchar *inp = str;
|
||||
gchar *outp = out;
|
||||
|
||||
while (*inp != '\0' && avail > 0) {
|
||||
if (*inp == '=') {
|
||||
|
|
Loading…
Reference in a new issue