2009-12-10 [iwkse] 3.7.3cvs38
authorSalvatore De Paolis <iwkse@claws-mail.org>
Thu, 10 Dec 2009 04:28:08 +0000 (04:28 +0000)
committerSalvatore De Paolis <iwkse@claws-mail.org>
Thu, 10 Dec 2009 04:28:08 +0000 (04:28 +0000)
* src/compose.c
            Fix some indentation

ChangeLog
PATCHSETS
configure.ac
src/compose.c

index 0582cd8bc0f6b19cd2d72db925c66766153b7420..bbfb3e875dbeed7b4b9157545067d75159983339 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-10 [iwkse]     3.7.3cvs38
+
+       * src/compose.c
+            Fix some indentation
+
 2009-12-10 [iwkse]     3.7.3cvs37
 
        * src/compose.c
index e75db5feb7ef3de8df11d461b619ac43e19b1978..884635e4a90cf1962fd011e1b2c77f4bbfb0c191 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.382.2.532 -r 1.382.2.533 src/compose.c;  ) > 3.7.3cvs35.patchset
 ( cvs diff -u -r 1.382.2.533 -r 1.382.2.534 src/compose.c;  ) > 3.7.3cvs36.patchset
 ( cvs diff -u -r 1.382.2.534 -r 1.382.2.535 src/compose.c;  ) > 3.7.3cvs37.patchset
+( cvs diff -u -r 1.382.2.535 -r 1.382.2.536 src/compose.c;  ) > 3.7.3cvs38.patchset
index 13a8565526db58f75468234cc53cbd7a7ced931e..ca718d7eb2b5d912ba155a06b8e8694b3312c40a 100644 (file)
@@ -12,7 +12,7 @@ MINOR_VERSION=7
 MICRO_VERSION=3
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=37
+EXTRA_VERSION=38
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index ec7c3034b4195905a4e3213ad59c1bcd88764226..c0a60dcdb182c62f711b5ded074c88db4e3f2f92 100644 (file)
@@ -6913,7 +6913,7 @@ static void compose_dict_changed(void *data)
        Compose *compose = (Compose *) data;
 
        if(compose->gtkaspell && 
-       compose->gtkaspell->recheck_when_changing_dict == FALSE)
+                  compose->gtkaspell->recheck_when_changing_dict == FALSE)
                return;
 
        gtkaspell_highlight_all(compose->gtkaspell);
@@ -7526,9 +7526,9 @@ static Compose *compose_create(PrefsAccount *account,
                        }
                }
        }
+    compose->gtkaspell = gtkaspell;
        compose_spell_menu_changed(compose);
        claws_spell_entry_set_gtkaspell(CLAWS_SPELL_ENTRY(subject_entry), gtkaspell);
-    compose->gtkaspell = gtkaspell;
 #endif
 
        compose_select_account(compose, account, TRUE);
@@ -9612,7 +9612,7 @@ static void compose_insert_file_cb(GtkAction *action, gpointer data)
 
 #ifdef USE_ENCHANT     
        if (files_inserted > 0 && compose->gtkaspell && 
-        compose->gtkaspell->check_while_typing)
+                   compose->gtkaspell->check_while_typing)
                gtkaspell_highlight_all(compose->gtkaspell);
 #endif
 }
@@ -9897,7 +9897,7 @@ static void compose_paste_cb(GtkAction *action, gpointer data)
 #ifdef USE_ENCHANT
        if (GTK_WIDGET_HAS_FOCUS(compose->text) &&
            compose->gtkaspell && 
-        compose->gtkaspell->check_while_typing)
+            compose->gtkaspell->check_while_typing)
                gtkaspell_highlight_all(compose->gtkaspell);
 #endif
 }
@@ -9947,7 +9947,7 @@ static void compose_paste_no_wrap_cb(GtkAction *action, gpointer data)
 #ifdef USE_ENCHANT
        if (GTK_WIDGET_HAS_FOCUS(compose->text) &&
            compose->gtkaspell && 
-        compose->gtkaspell->check_while_typing)
+            compose->gtkaspell->check_while_typing)
                gtkaspell_highlight_all(compose->gtkaspell);
 #endif
 }
@@ -9970,7 +9970,7 @@ static void compose_paste_wrap_cb(GtkAction *action, gpointer data)
 #ifdef USE_ENCHANT
        if (GTK_WIDGET_HAS_FOCUS(compose->text) &&
            compose->gtkaspell &&
-        compose->gtkaspell->check_while_typing)
+            compose->gtkaspell->check_while_typing)
                gtkaspell_highlight_all(compose->gtkaspell);
 #endif
 }