* src/prefs_common.c
authorChristoph Hohmann <reboot@gmx.ch>
Wed, 25 Sep 2002 21:19:01 +0000 (21:19 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Wed, 25 Sep 2002 21:19:01 +0000 (21:19 +0000)
* src/prefs_folder_item.c
* src/prefs_scoring.c
        Renamed "kill score" to "hide score" in GUI
        and prefs files

ChangeLog.claws
configure.in
src/prefs_common.c
src/prefs_folder_item.c
src/prefs_scoring.c

index 8b452b10a9ffe99d9cc0e34b092823cc6e23038e..e09075f9ebc72a620674aa8f166138c1bad67148 100644 (file)
@@ -1,3 +1,11 @@
+2002-09-25 [christoph] 0.8.3claws23
+
+       * src/prefs_common.c
+       * src/prefs_folder_item.c
+       * src/prefs_scoring.c
+               Renamed "kill score" to "hide score" in GUI
+               and prefs files
+
 2002-09-25 [paul]      0.8.3claws22
 
        * sync with 0.8.3cvs5
index ef1ac8aa57fb0cbd64057896a90e403617977d17..62a23d723d843fb9e556043fa76f8acb26faf3cd 100644 (file)
@@ -10,7 +10,7 @@ MINOR_VERSION=8
 MICRO_VERSION=3
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws22
+EXTRA_VERSION=claws23
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index f4e39cdbd1aac6f3a36c2329ec9999dd485ba23b..c0b54c433a49854d03ca7c30f2c1009821495de4 100644 (file)
@@ -795,7 +795,7 @@ static PrefParam param[] = {
        {"work_offline", "FALSE", &prefs_common.work_offline, P_BOOL,
         NULL, NULL, NULL},
 
-       {"kill_score", "-9999", &prefs_common.kill_score, P_INT,
+       {"hide_score", "-9999", &prefs_common.kill_score, P_INT,
         NULL, NULL, NULL},
        {"important_score", "1", &prefs_common.important_score, P_INT,
         NULL, NULL, NULL},
index cd335adba25f367b4537553ffce24c5564552378..6e751b2bbff8dea900ad35cbf04acb4d6aa7ef6e 100644 (file)
@@ -80,7 +80,7 @@ static PrefParam param[] = {
         NULL, NULL, NULL},
        /*{"enable_thread", "TRUE", &tmp_prefs.enable_thread, P_BOOL,
         NULL, NULL, NULL},*/
-       {"kill_score", "-9999", &tmp_prefs.kill_score, P_INT,
+       {"hide_score", "-9999", &tmp_prefs.kill_score, P_INT,
         NULL, NULL, NULL},
        {"important_score", "1", &tmp_prefs.important_score, P_INT,
         NULL, NULL, NULL},
index 6b5fb9e9193bd990e03f474db379c39c084e52bd..5bac35799907745342743ea80b86bf6c94590855 100644 (file)
@@ -332,7 +332,7 @@ static void prefs_scoring_create(void)
        gtk_widget_show (hbox1);
        gtk_box_pack_start (GTK_BOX (vbox1), hbox1, TRUE, TRUE, 0);
 
-       kill_score_label = gtk_label_new (_("Kill score"));
+       kill_score_label = gtk_label_new (_("Hide score"));
        gtk_widget_show (kill_score_label);
        gtk_misc_set_alignment (GTK_MISC (kill_score_label), 0, 0.5);
        gtk_box_pack_start (GTK_BOX (hbox1), kill_score_label,