From: Christoph Hohmann Date: Sun, 26 Jan 2003 13:24:09 +0000 (+0000) Subject: 0.8.9claws11 X-Git-Tag: rel_0_8_10~53 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=6f486e85984ff84ea31d41a9067f11745661d394;ds=sidebyside 0.8.9claws11 * src/Makefile.am * src/gtkutils.[ch] ** REMOVE ** * src/common/sylpheed.c * src/gtk/Makefile.am * src/gtk/description_window.c * src/gtk/gtkutils.[ch] ** NEW ** * src/gtk/prefswindow.c move gtkutils to gtk directory --- diff --git a/ChangeLog.claws b/ChangeLog.claws index ee87f8cfe..e44dd3dc4 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,7 +1,18 @@ -2003-01-27 [paul] 0.8.9claws10 +2003-01-26 [christoph] 0.8.9claws11 + + * src/Makefile.am + * src/gtkutils.[ch] ** REMOVE ** + * src/common/sylpheed.c + * src/gtk/Makefile.am + * src/gtk/description_window.c + * src/gtk/gtkutils.[ch] ** NEW ** + * src/gtk/prefswindow.c + move gtkutils to gtk directory + +2003-01-26 [paul] 0.8.9claws10 * src/summaryview.c - rename summary_unread_clicked{} to summary_status_clicked{} + rename summary_unread_clicked() to summary_status_clicked() 2003-01-26 [melvin] 0.8.9claws9 @@ -33,7 +44,7 @@ 2003-01-25 [paul] 0.8.9claws6 * src/summaryview.c - summary_thread_build{}, summary_thread_init{}: remove + summary_thread_build(), summary_thread_init(): remove unneeded reference to summaryview->folder_item 2003-01-25 [christoph] 0.8.9claws5 @@ -77,14 +88,14 @@ 2003-01-25 [paul] 0.8.9claws1 - * codeconv.c + * src/codeconv.c conv_encode_header(): fix bug when long headers with 8-bit characters are used, so that the encoded words are wrapped. If the space in the original text falls on the wrap boundary, it can be lost. Patch by Sergey Vlasov. - * folderview.c + * src/folderview.c fix bug where a change to the sorting method or thread view of a folder's messages is lost if simpify-subject is set and toggled on or off. diff --git a/configure.ac b/configure.ac index a48ab924c..97971c60a 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=9 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws10 +EXTRA_VERSION=claws11 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/doc/src/ui_seperation.txt b/doc/src/ui_seperation.txt index 9496b61e3..52866d7e3 100644 --- a/doc/src/ui_seperation.txt +++ b/doc/src/ui_seperation.txt @@ -42,3 +42,5 @@ prefs.[ch] common/prefs.[ch] menu.[ch] gtk/menu.[ch] ok stringtable.[ch] common/stringtable.[ch] ok + +gtkutils.[ch] gtk/gtkutils.[ch] ok diff --git a/src/Makefile.am b/src/Makefile.am index bd0fa8a7e..99c592065 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -77,7 +77,6 @@ sylpheed_SOURCES = \ grouplistdialog.c grouplistdialog.h \ about.c about.h \ setup.c setup.h \ - gtkutils.c gtkutils.h \ codeconv.c codeconv.h \ unmime.c unmime.h \ ssl_manager.c ssl_manager.h \ diff --git a/src/gtk/Makefile.am b/src/gtk/Makefile.am index fce036ff2..31466fab4 100644 --- a/src/gtk/Makefile.am +++ b/src/gtk/Makefile.am @@ -2,6 +2,7 @@ noinst_LTLIBRARIES = libsylpheedgtk.la libsylpheedgtk_la_SOURCES = \ description_window.h description_window.c \ + gtkutils.c gtkutils.h \ gtkshruler.c gtkshruler.h \ gtksctree.c gtksctree.h \ gtkstext.c gtkstext.h \ @@ -13,6 +14,7 @@ libsylpheedgtk_la_SOURCES = \ INCLUDES = \ -I../common \ + -I.. \ $(GTK_CFLAGS) libsylpheedgtk_la_LIBADD = \ diff --git a/src/gtk/description_window.c b/src/gtk/description_window.c index 7b567cd25..4cb2ca755 100644 --- a/src/gtk/description_window.c +++ b/src/gtk/description_window.c @@ -28,7 +28,7 @@ #include "intl.h" #include "manage_window.h" #include "description_window.h" -#include "../gtkutils.h" +#include "gtkutils.h" static void description_create (DescriptionWindow *dwindow); static void description_window_key_pressed (GtkWidget *widget, diff --git a/src/gtkutils.c b/src/gtk/gtkutils.c similarity index 100% rename from src/gtkutils.c rename to src/gtk/gtkutils.c diff --git a/src/gtkutils.h b/src/gtk/gtkutils.h similarity index 100% rename from src/gtkutils.h rename to src/gtk/gtkutils.h diff --git a/src/gtk/prefswindow.c b/src/gtk/prefswindow.c index e62b3ae99..d9abcb05d 100644 --- a/src/gtk/prefswindow.c +++ b/src/gtk/prefswindow.c @@ -26,7 +26,7 @@ #include "intl.h" #include "prefswindow.h" -#include "../gtkutils.h" +#include "gtkutils.h" typedef struct _PrefsWindow PrefsWindow;