From e5fc1560b08c411d93c76921812cf60b106b473f Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Thu, 2 Dec 2010 00:43:07 +0000 Subject: Fixed Doxygen comments, typos, and a few indenting issues. Part 1, more to come ... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7936 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Fl.cxx') diff --git a/src/Fl.cxx b/src/Fl.cxx index 902d09b43..b46a278ad 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1771,7 +1771,7 @@ void Fl::clear_widget_pointer(Fl_Widget const *w) There should be an application that manages options system wide, per user, and per application. */ -bool Fl::option(Fl_Option o) +bool Fl::option(Fl_Option opt) { if (!options_read_) { int tmp; @@ -1791,9 +1791,9 @@ bool Fl::option(Fl_Option o) } options_read_ = 1; } - if (o<0 || o>=OPTION_LAST) + if (opt<0 || opt>=OPTION_LAST) return false; - return (bool)options_[o]; + return (bool)options_[opt]; } -- cgit v1.2.3