summaryrefslogtreecommitdiff
path: root/src/Fl.cxx
diff options
context:
space:
mode:
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];
}