summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-04-05 21:02:48 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-04-05 21:02:48 +0000
commit814da7f392144de2c61d40a052edffdd54523d0a (patch)
tree20e36461c5c1c340a494edd173107d0db998d577 /FL
parentfca1c022e7affbd01087acea46b321f1648c3c9a (diff)
Little fix that will keep Fl_Text_Display from crashing on German umlauts. This is by no means a fix.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7440 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Text_Buffer.H4
1 files changed, 0 insertions, 4 deletions
diff --git a/FL/Fl_Text_Buffer.H b/FL/Fl_Text_Buffer.H
index 909775f84..7a8fedb41 100644
--- a/FL/Fl_Text_Buffer.H
+++ b/FL/Fl_Text_Buffer.H
@@ -75,7 +75,6 @@ public:
\brief Set the selection range.
\param start byte offset to first selected character
\param end byte offset pointing after last selected character
- \todo unicode check
*/
void set(int start, int end);
@@ -85,7 +84,6 @@ public:
\param end byte offset pointing after last selected character
\param rectStart first selected column
\param rectEnd last selected column +1
- \todo unicode check
*/
void set_rectangular(int start, int end, int rectStart, int rectEnd);
@@ -154,7 +152,6 @@ public:
\brief Return the positions of this selection.
\param start retrun byte offset to first selected character
\param end retrun byte offset pointing after last selected character
- \todo unicode check
*/
int position(int* start, int* end) const;
@@ -165,7 +162,6 @@ public:
\param isRect return if the selection is rectangular
\param rectStart return first selected column
\param rectEnd return last selected column +1
- \todo unicode check
*/
int position(int* start, int* end, int* isRect, int* rectStart, int* rectEnd) const;