summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2010-12-02 00:43:07 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2010-12-02 00:43:07 +0000
commite5fc1560b08c411d93c76921812cf60b106b473f (patch)
treeaecd6949ae5a7d0e4b158bf04e033de340b30844 /src/Fl.cxx
parent17963c0475565be7019d73e3fc68cb8ee089e198 (diff)
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
Diffstat (limited to 'src/Fl.cxx')
-rw-r--r--src/Fl.cxx6
1 files changed, 3 insertions, 3 deletions
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];
}