use gulong for P_COLOR so that it compiles/runs on 64-bit systems
authorPaul Mangan <paul@claws-mail.org>
Thu, 17 Apr 2003 09:06:09 +0000 (09:06 +0000)
committerPaul Mangan <paul@claws-mail.org>
Thu, 17 Apr 2003 09:06:09 +0000 (09:06 +0000)
AUTHORS
ChangeLog.claws
configure.ac
src/prefs_common.h

diff --git a/AUTHORS b/AUTHORS
index 4eeb0f988e2b99aa4cd1aa8b96f2337378332100..168400142ca9089286a39bf0e11adf7d5c59b437 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -173,3 +173,4 @@ contributors (beside the above; based on Changelog)
        André Filipe de Assunção e Brito
        Sergei Astanin
        Kevin Vigor
+       James Noyes
index 7213d25c56b75eb6541623b8919feaf72c8f9f40..a8b900ded0d710d9e8fc7c642345a918627d169a 100644 (file)
@@ -1,6 +1,16 @@
-2003-04-15 [paul]      0.8.11claws95
+2003-04-17 [paul]      0.8.11claws96
 
-       * sync with 0.8.11cvs27
+       * src/prefs_common.h
+               use gulong for P_COLOR so that it compiles/runs on
+               64-bit systems. Patch submitted by James Noyes
+               <jnoyes-claws@retrogeeks.com>
+               
+       * po/de.po
+               updated by Jens
+
+2003-04-17 [paul]      0.8.11claws95
+
+       * sync with 0.8.11cvs26
                see ChangeLog 2003-04-16
 
 2003-04-15 [paul]      0.8.11claws94
index 57cd1a79fa208db181473ec920f9c5458d208990..43cbd55a46a7818fa613a2b3a1643e7e9017049e 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=11
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws95
+EXTRA_VERSION=claws96
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index f92a3d51e233ae37783b4fcde47a2ce77370e828..3e495eaf10a7bf5df71fc7f614f6c086f710a0fc 100644 (file)
@@ -118,7 +118,7 @@ struct _PrefsCommon
        gboolean enable_aspell;
        gchar *aspell_path;
        gchar *dictionary;
-       gint misspelled_col;
+       gulong misspelled_col;
        gint aspell_sugmode;
        gboolean check_while_typing;
        gboolean use_alternate;
@@ -198,12 +198,12 @@ struct _PrefsCommon
 
        /* Message */
        gboolean enable_color;
-       gint quote_level1_col;
-       gint quote_level2_col;
-       gint quote_level3_col;
-       gint uri_col;
-       gint tgt_folder_col;
-       gint signature_col;
+       gulong quote_level1_col;
+       gulong quote_level2_col;
+       gulong quote_level3_col;
+       gulong uri_col;
+       gulong tgt_folder_col;
+       gulong signature_col;
        gboolean recycle_quote_colors;
        gboolean conv_mb_alnum;
        gboolean display_header_pane;
@@ -279,7 +279,7 @@ struct _PrefsCommon
        gboolean work_offline;
        
        gint summary_quicksearch_type;
-       gint color_new;
+       gulong color_new;
 };
 
 extern PrefsCommon prefs_common;