diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ChangeLog.ja | 5 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | README.ja | 2 | ||||
-rw-r--r-- | src/prefs_common.c | 2 | ||||
-rw-r--r-- | src/prefs_common.h | 1 |
6 files changed, 9 insertions, 7 deletions
@@ -1,5 +1,9 @@ 2005-06-24 + * src/prefs_common.[ch]: removed unused option 'enable_hscrollbar'. + +2005-06-24 + * src/summaryview.c: removed unrequired function summary_set_column_titles(). diff --git a/ChangeLog.ja b/ChangeLog.ja index 7e3417f8..ee435788 100644 --- a/ChangeLog.ja +++ b/ChangeLog.ja @@ -1,5 +1,10 @@ 2005-06-24 + * src/prefs_common.[ch]: 未使用のオプション 'enable_hscrollbar' を + 削除。 + +2005-06-24 + * src/summaryview.c: 不要な関数 summary_set_column_titles() を削除。 2005-06-23 @@ -181,8 +181,6 @@ allow_jisx0201_kana allow JIS X 0201 Kana (half-width kana) on 0: off 1: on [default: 0] enable_rules_hint enable alternating row colors for summary view 0: off 1: on [default: 1] -enable_hscrollbar enable horizontal scroll bar in summary view - 0: off 1: on [default: 1] bold_unread show unread messages using bold font in summary view 0: off 1: on [default: 1] @@ -194,8 +194,6 @@ allow_jisx0201_kana JIS X 0201 カナ(半角カナ)を送信時に許可する 0: off 1: on [デフォルト: 0] enable_rules_hint サマリビューで行の色を交互に表示する 0: off 1: on [デフォルト: 1] -enable_hscrollbar サマリビューで水平スクロールバーを有効にする - 0: off 1: on [デフォルト: 1] bold_unread サマリビューで未読メッセージをボールド フォントを使用して表示 0: off 1: on [デフォルト: 1] diff --git a/src/prefs_common.c b/src/prefs_common.c index aadbfaa6..83b560c7 100644 --- a/src/prefs_common.c +++ b/src/prefs_common.c @@ -389,8 +389,6 @@ static PrefParam param[] = { {"enable_rules_hint", "TRUE", &prefs_common.enable_rules_hint, P_BOOL, NULL, NULL, NULL}, - {"enable_hscrollbar", "TRUE", &prefs_common.enable_hscrollbar, P_BOOL, - NULL, NULL, NULL}, {"bold_unread", "TRUE", &prefs_common.bold_unread, P_BOOL, NULL, NULL, NULL}, diff --git a/src/prefs_common.h b/src/prefs_common.h index 190d1036..7faf27ae 100644 --- a/src/prefs_common.h +++ b/src/prefs_common.h @@ -103,7 +103,6 @@ struct _PrefsCommon gchar *date_format; gboolean enable_rules_hint; - gboolean enable_hscrollbar; gboolean bold_unread; ToolbarStyle toolbar_style; |