diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-12-20 20:05:15 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-12-20 20:05:15 +0100 |
| commit | 1d212b7a0394fb72e76b3e713e2aa949cea4d612 (patch) | |
| tree | 83bbd44c7e50ea78cec9c374723f47a64e7924b2 /FL/Fl_String.H | |
| parent | 004ea67203f6de695c3e1e246da28bf73d74ee83 (diff) | |
Clean up class Fl_String (part of issue #601)
- remove static variable 'string_count'
- improve and document methods debug() and hexdump()
This commit does not resolve issue 601 but removes some development
leftovers.
Methods debug() and hexdump() left for debugging as requested.
Diffstat (limited to 'FL/Fl_String.H')
| -rw-r--r-- | FL/Fl_String.H | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/FL/Fl_String.H b/FL/Fl_String.H index 8b9b33a1b..300cf98f6 100644 --- a/FL/Fl_String.H +++ b/FL/Fl_String.H @@ -104,10 +104,8 @@ public: int slen() const; int capacity() const; - // ================================== DEBUG ================================== - - void debug(const char *info) const; // output string info - void hexdump(const char *info) const; // output info + hexdump + void debug(const char *info = 0) const; // output string info + void hexdump(const char *info = 0) const; // output string info + hexdump }; // class Fl_String |
