summaryrefslogtreecommitdiff
path: root/FL/Fl_Text_Buffer.H
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-02-10 16:14:30 +0100
committerMatthias Melcher <github@matthiasm.com>2023-02-10 16:29:14 +0100
commitfc9d0a23af137aa23a906196c925ba92249e0d50 (patch)
treecf6c2bb425c64b085fbf74e368098ebe2eaed090 /FL/Fl_Text_Buffer.H
parentd7f21d95684754230b9f35b088ba3701b5621d7c (diff)
Fixes FL_DEPRECATED for Fl_Text_Buffer.h
Diffstat (limited to 'FL/Fl_Text_Buffer.H')
-rw-r--r--FL/Fl_Text_Buffer.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Text_Buffer.H b/FL/Fl_Text_Buffer.H
index 26eece34c..28fbb0f44 100644
--- a/FL/Fl_Text_Buffer.H
+++ b/FL/Fl_Text_Buffer.H
@@ -23,7 +23,7 @@
#define FL_TEXT_BUFFER_H
#include <stdarg.h> /* va_list */
-#include <FL/fl_attr.h>
+#include "fl_attr.h" /* Doxygen can't find <FL/fl_attr.h> */
#undef ASSERT_UTF8
@@ -166,7 +166,7 @@ public:
// Returns true if selected() and the positions of this selection.
int selected(int *startpos, int *endpos) const;
- FL_DEPRECATED("Please use selected(startpos, endpos) instead.",
+ FL_DEPRECATED("Please use selected(startpos, endpos) instead (since 1.4.0).",
int position(int *startpos, int *endpos) const) { return selected(startpos, endpos); }
protected: