diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2014-01-31 21:51:53 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2014-01-31 21:51:53 +0000 |
| commit | a6a51c14441a15c61b069e4eef937df309011ee3 (patch) | |
| tree | e1aeda755e01a0d74f48e6ca6e60629d491a3563 | |
| parent | 1adf939c5942ad191afe53e1c0a9169e5df02db1 (diff) | |
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
| -rw-r--r-- | FL/Fl.H | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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_)); } /** |
