Make limit an inclusive boundary. (#321299)
2005-11-13 Matthias Clasen <mclasen@redhat.com> * gtk/gtktextiter.c (gtk_text_iter_forward_search): Make limit an inclusive boundary. (#321299)
This commit is contained in:

committed by
Matthias Clasen

parent
94e4118cf7
commit
caf8be159a
@ -1,3 +1,8 @@
|
|||||||
|
2005-11-13 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
|
||||||
|
limit an inclusive boundary. (#321299)
|
||||||
|
|
||||||
2005-11-12 Michael Natterer <mitch@imendio.com>
|
2005-11-12 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
* gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
|
* gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2005-11-13 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
|
||||||
|
limit an inclusive boundary. (#321299)
|
||||||
|
|
||||||
2005-11-12 Michael Natterer <mitch@imendio.com>
|
2005-11-12 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
* gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
|
* gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only
|
||||||
|
@ -4682,7 +4682,7 @@ gtk_text_iter_forward_search (const GtkTextIter *iter,
|
|||||||
{
|
{
|
||||||
if (limit == NULL ||
|
if (limit == NULL ||
|
||||||
(limit &&
|
(limit &&
|
||||||
gtk_text_iter_compare (&end, limit) < 0))
|
gtk_text_iter_compare (&end, limit) <= 0))
|
||||||
{
|
{
|
||||||
retval = TRUE;
|
retval = TRUE;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user