Rename Fl::scheme_is() to Fl::is_scheme().
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10090 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
1adf939c59
commit
a6a51c1444
4
FL/Fl.H
4
FL/Fl.H
@ -297,7 +297,7 @@ public:
|
||||
|
||||
Example:
|
||||
\code
|
||||
if (Fl::scheme_is("gtk+")) { your_code_here(); }
|
||||
if (Fl::is_scheme("gtk+")) { your_code_here(); }
|
||||
\endcode
|
||||
|
||||
\param[in] name \b lowercase string of requested scheme name.
|
||||
@ -306,7 +306,7 @@ public:
|
||||
|
||||
\see Fl::scheme(const char *name)
|
||||
*/
|
||||
static int scheme_is(const char *name) {
|
||||
static int is_scheme(const char *name) {
|
||||
return (scheme_ && name && !strcmp(name,scheme_));
|
||||
}
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user