summaryrefslogtreecommitdiff
path: root/FL/Fl_Text_Buffer.H
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-11-06 23:16:07 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-11-06 23:16:07 +0000
commit213318ccb3f5012da07b143e29a5dc5c8b5192de (patch)
tree186a4e1ebb3dfa11c58efb877ff7197a28cdd047 /FL/Fl_Text_Buffer.H
parentb1c062ebd197bd07ba9516d24cc601dba2bc50ec (diff)
Removed some unused stuff and duplicates.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7806 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Text_Buffer.H')
-rw-r--r--FL/Fl_Text_Buffer.H26
1 files changed, 0 insertions, 26 deletions
diff --git a/FL/Fl_Text_Buffer.H b/FL/Fl_Text_Buffer.H
index e5ca4e47b..25ce72b79 100644
--- a/FL/Fl_Text_Buffer.H
+++ b/FL/Fl_Text_Buffer.H
@@ -646,32 +646,6 @@ public:
int findchar_backward(int startPos, unsigned searchChar, int* foundPos) const;
/**
- Finds the next occurrence of the specified characters.
- Search forwards in buffer for characters in \p searchChars, starting
- with the character \p startPos, and returning the result in \p foundPos
- returns 1 if found, 0 if not.
- \param startPos byte offset to start position
- \param searchChars utf8 string that we want to find
- \param foundPos byte offset where the string was found
- \return 1 if found, 0 if not
- \todo unicode check
- */
- int findchars_forward(int startPos, const char* searchChars, int* foundPos) const;
-
- /**
- Finds the previous occurrence of the specified characters.
- Search backwards in buffer for characters in \p searchChars, starting
- with the character BEFORE \p startPos, returning the result in \p foundPos
- returns 1 if found, 0 if not.
- \param startPos byte offset to start position
- \param searchChars utf8 string that we want to find
- \param foundPos byte offset where the string was found
- \return 1 if found, 0 if not
- \todo unicode check
- */
- int findchars_backward(int startPos, const char* searchChars, int* foundPos) const;
-
- /**
Search forwards in buffer for string \p searchString, starting with the
character \p startPos, and returning the result in \p foundPos
returns 1 if found, 0 if not.