summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index d1793cdce..316e584dd 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1888,14 +1888,28 @@ int Fl::dnd()
return Fl::screen_driver()->dnd();
}
+#if !defined(FL_DOXYGEN) // FIXME - silence Doxygen warnings
+
+/**
+ Resets marked text.
+
+ \todo Please explain what exactly this does and how to use it.
+*/
void Fl::reset_marked_text() {
Fl::screen_driver()->reset_marked_text();
}
-void Fl::insertion_point_location(int x, int y, int height) { // sets window coordinates & height of insertion point
+/**
+ Sets window coordinates and height of insertion point.
+
+ \todo Please explain what exactly this does and how to use it.
+*/
+void Fl::insertion_point_location(int x, int y, int height) {
Fl::screen_driver()->insertion_point_location(x, y, height);
}
+#endif // !defined(FL_DOXYGEN) // FIXME - silence Doxygen warnings
+
int Fl::event_key(int k) {
return system_driver()->event_key(k);
}