From: Vadim Zeitlin Date: Mon, 9 Apr 2007 21:17:09 +0000 (+0000) Subject: don't return the next line text from GetLineText() for empty lines (patch 1697208) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5440a04fa89937d7977c485d88183295dede061d don't return the next line text from GetLineText() for empty lines (patch 1697208) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45361 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/changes.txt b/docs/changes.txt index 74b77b8c3e..e212d89871 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -153,6 +153,7 @@ wxGTK: - Fix infinite loop when adding a wxStaticText control to a toolbar - Fix wxNO_BORDER style for wxRadioBox (David Hart) +- Fix wxTextCtrl::GetLineText() for empty lines (Marcin Wojdyr) 2.8.3 diff --git a/src/gtk/textctrl.cpp b/src/gtk/textctrl.cpp index 90d8220629..1a1985f805 100644 --- a/src/gtk/textctrl.cpp +++ b/src/gtk/textctrl.cpp @@ -1139,8 +1139,12 @@ wxString wxTextCtrl::GetLineText( long lineNo ) const { GtkTextIter line; gtk_text_buffer_get_iter_at_line(m_buffer,&line,lineNo); + GtkTextIter end = line; - gtk_text_iter_forward_to_line_end(&end); + // avoid skipping to the next line end if this one is empty + if ( !gtk_text_iter_ends_line(&line) ) + gtk_text_iter_forward_to_line_end(&end); + wxGtkString text(gtk_text_buffer_get_text(m_buffer, &line, &end, true)); result = wxGTK_CONV_BACK(text); }