aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/summaryview.c4
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 48b34fd8..06925f2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-19
+
+ * src/summaryview.c: summary_reply(): fixed a bug that didn't
+ correctly get text selection.
+
2005-01-12
* Ported to GTK+-2.4 (based on Ashie's sylpheed-gtk2).
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 0440afa0..92484de5 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2005-01-19
+
+ * src/summaryview.c: summary_reply(): 正しくテキストセレクションを
+ 取得していないバグを修正。
+
2005-01-12
* GTK+-2.4 へ移行 (足永さんの sylpheed-gtk2 ベース)。
diff --git a/src/summaryview.c b/src/summaryview.c
index 53d9b349..d66ba5bd 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -3389,8 +3389,8 @@ void summary_reply(SummaryView *summaryview, ComposeMode mode)
/* use selection only if the displayed message is selected */
if (!mlist->next && msginfo == displayed_msginfo) {
- text = gtkut_editable_get_selection
- (GTK_EDITABLE(summaryview->messageview->textview->text));
+ text = gtkut_text_view_get_selection
+ (GTK_TEXT_VIEW(summaryview->messageview->textview->text));
if (text && *text == '\0') {
g_free(text);
text = NULL;