From: <ju...@us...> - 2003-08-02 05:55:38
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk/multiline In directory sc8-pr-cvs1:/tmp/cvs-serv24290/gtk/multiline Modified Files: TextBuffer.chs Log Message: fix typo in textBufferGetCharCount (it was calling text_buffer_get_line_count!) Index: TextBuffer.chs =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/multiline/TextBuffer.chs,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- TextBuffer.chs 9 Jul 2003 22:42:45 -0000 1.8 +++ TextBuffer.chs 2 Aug 2003 05:55:35 -0000 1.9 @@ -163,7 +163,7 @@ -- textBufferGetCharCount :: TextBuffer -> IO Int textBufferGetCharCount tb = liftM fromIntegral $ - {#call unsafe text_buffer_get_line_count#} tb + {#call unsafe text_buffer_get_char_count#} tb -- @method textBufferGetTagTable@ Extract the tag table that is associated -- with this text buffer. |