diff options
| author | Matthias Melcher <github@matthiasm.com> | 2025-03-07 01:15:57 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2025-03-07 01:15:57 +0100 |
| commit | 6acda521ccaa448eeb26f81a2432da586bed9b30 (patch) | |
| tree | c5cdcca4e341539a0165a74b59a916922ccccb40 /src/Fl_Native_File_Chooser_Kdialog.H | |
| parent | 063ff67fcdd6976be214b6fb519d45c650d5498c (diff) | |
Removes the remaining references to Fl_String.
Still to do: rename fl_filename... to fl_filename..._str
and introduce into core library.
Diffstat (limited to 'src/Fl_Native_File_Chooser_Kdialog.H')
| -rw-r--r-- | src/Fl_Native_File_Chooser_Kdialog.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Native_File_Chooser_Kdialog.H b/src/Fl_Native_File_Chooser_Kdialog.H index 8b50b36fa..b90f77ca4 100644 --- a/src/Fl_Native_File_Chooser_Kdialog.H +++ b/src/Fl_Native_File_Chooser_Kdialog.H @@ -24,7 +24,7 @@ */ #include <FL/Fl_Native_File_Chooser.H> -#include "Fl_String.H" +#include <string> class Fl_Kdialog_Native_File_Chooser_Driver : public Fl_Native_File_Chooser_FLTK_Driver { friend class Fl_Native_File_Chooser; @@ -46,7 +46,7 @@ class Fl_Kdialog_Native_File_Chooser_Driver : public Fl_Native_File_Chooser_FLTK int count() const FL_OVERRIDE; const char *filename() const FL_OVERRIDE; const char *filename(int i) const FL_OVERRIDE; - virtual void build_command(Fl_String& command); + virtual void build_command(std::string& command); int show() FL_OVERRIDE; char *parse_filter(const char *f); const char *filter() const FL_OVERRIDE; @@ -58,7 +58,7 @@ class Fl_Kdialog_Native_File_Chooser_Driver : public Fl_Native_File_Chooser_FLTK const char *directory() const FL_OVERRIDE; void title(const char *val) FL_OVERRIDE; const char *title() const FL_OVERRIDE; - void shell_quote(Fl_String& s); + void shell_quote(std::string& s); }; /** |
