0.8.6claws82
authorChristoph Hohmann <reboot@gmx.ch>
Sun, 8 Dec 2002 16:32:17 +0000 (16:32 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Sun, 8 Dec 2002 16:32:17 +0000 (16:32 +0000)
* src/about.c
* src/addr_compl.c
* src/codeconv.c
* src/manual.c
* src/undo.c
* src/common/utils.c
        o add missing includes
        o fix warnings
* src/.cvsignore
* src/common/.cvsignore
* src/common/version.h          ** REMOVE **
        remove autogenerated file

ChangeLog.claws
configure.in
src/.cvsignore
src/about.c
src/addr_compl.c
src/codeconv.c
src/common/.cvsignore
src/common/utils.c
src/common/version.h [deleted file]
src/manual.c
src/undo.c

index 8823be923a94387459c0a99d8e1005325fa12060..2b872b8f8987059af3b647a5052bb777651472b9 100644 (file)
@@ -1,3 +1,18 @@
+2002-12-08 [christoph] 0.8.6claws82
+
+       * src/about.c
+       * src/addr_compl.c
+       * src/codeconv.c
+       * src/manual.c
+       * src/undo.c
+       * src/common/utils.c
+               o add missing includes
+               o fix warnings
+       * src/.cvsignore
+       * src/common/.cvsignore
+       * src/common/version.h          ** REMOVE **
+               remove autogenerated file
+
 2002-12-08 [paul]      0.8.6claws81
 
        * src/stringtable.c
index 9f191bf01aa3a260791dcb8daf4de214887b5db1..e2b3410e27f9fffdcbd4d31876ea483db5eed9ff 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws81
+EXTRA_VERSION=claws82
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 9692b5f2d839045f56bf53dde89f9bf2f65524e1..c0838b1f4ad50d5684c969bfe313963d9bce4ed2 100644 (file)
@@ -12,5 +12,4 @@ quote_fmt_parse.h
 matcher_parser_lex.c
 matcher_parser_parse.c
 matcher_parser_parse.h
-version.h
 ylwrap
index 696bf7f40694f0291d82de4af629f872fcd39907..c2d847c39a3a14c4e7ddd0a329d886ba03d70c4f 100644 (file)
@@ -45,6 +45,7 @@
 #include "prefs_common.h"
 #include "utils.h"
 #include "version.h"
+#include "gtkutils.h"
 
 static GtkWidget *window;
 
index 32e21c806f3d40b7f375f7fbbd277ef8975cd76b..0a41a18ab7af93dc7053fd29b4c66a56bb381f2e 100644 (file)
@@ -40,6 +40,7 @@
 #  include <wctype.h>
 #endif
 
+#include "addressbook.h"
 #include "addr_compl.h"
 #include "utils.h"
 
index 3d1cc5fc4fea0072b49af6ade4fe1d53f1c5d2bc..1be0ffc89de013b42db64e5f0e948a0d0fb65786 100644 (file)
@@ -44,6 +44,7 @@
 #include "base64.h"
 #include "utils.h"
 #include "prefs_common.h"
+#include "unmime.h"
 
 typedef enum
 {
index 2a6ab490b14aa1c1ec5139c7f6a039196a0a07e6..88c98773142dcb2caa5620d3d731a0ad236dbc5f 100644 (file)
@@ -2,6 +2,7 @@
 .libs
 Makefile
 Makefile.in
+version.h
 *.o
 *.lo
 *.la
index 6f7d1ffbb91a520506463328a13001304d815718..3b861e422a99e3b957c53ef436b5ea25eac60802 100644 (file)
@@ -3090,7 +3090,7 @@ gchar *expand_search_string(const gchar *search_string)
        /* if it's a full command don't process it so users
           can still do something like from regexpcase "foo" */
        for (i = 0; cmds[i].command; i++) {
-               gchar *tmp_search_string = search_string;
+               const gchar *tmp_search_string = search_string;
                cmd_start = cmds[i].command;
                /* allow logical NOT */
                if (*tmp_search_string == '~')
diff --git a/src/common/version.h b/src/common/version.h
deleted file mode 100644 (file)
index a1e8567..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2001 Hiroyuki Yamamoto
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __VERSION_H__
-#define __VERSION_H__
-
-#define PACKAGE                        "sylpheed"
-#define VERSION                        "0.8.6claws77"
-#define PROG_VERSION           "Sylpheed version "VERSION
-
-#endif /* __VERSION_H__ */
index 4eb9060ca48657c91830004d29f03108dc835d18..981c7346866c87725ba5cfeef03dd432fb5d3501 100644 (file)
@@ -29,6 +29,7 @@
 
 #include "prefs_common.h"
 #include "manual.h"
+#include "utils.h"
 
 static gchar *sylpheeddoc_manuals[] =
 {
index ee837b992369d2690766a9f674fd3c98db7601a7..f14c9e4707070c891d8584cfa590bdae9c7881db 100644 (file)
@@ -25,7 +25,6 @@
 #endif
 
 #include <glib.h>
-#include "gtkstext.h"
 
 #include <string.h> /* for strlen */
 #include <stdlib.h> /* for mbstowcs */
@@ -33,6 +32,7 @@
 #include "undo.h"
 #include "utils.h"
 #include "prefs_common.h"
+#include "gtkstext.h"
 
 typedef struct _UndoInfo UndoInfo;