aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-19 06:48:58 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-01-19 06:48:58 +0000
commitb303c834f7f1fcf25035d709135b2a114c1110c0 (patch)
tree9289da1a8973ac50400a45179dccd471e465b35d /src/summaryview.c
parent303588bf81e27ccea4b75c37888d967a25171cee (diff)
fixed a bug that didn't correctly get text selection on reply.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@19 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c4
1 files changed, 2 insertions, 2 deletions
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;