diff options
| author | Greg Ercolano <erco@seriss.com> | 2020-07-21 20:15:41 -0700 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2020-08-01 14:19:40 -0700 |
| commit | 2141c63628a831d3f53dad7035c94028f8d0d629 (patch) | |
| tree | 614cb7b627da2decbb7cfe49c081f9d7b4140c58 /src/fl_ask.cxx | |
| parent | 7514a73ba759f7fc9965eeef3b92ece899bd7a69 (diff) | |
Implement + deploy fl_strdup()
Diffstat (limited to 'src/fl_ask.cxx')
| -rw-r--r-- | src/fl_ask.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx index ecd853bd5..f711a9f1d 100644 --- a/src/fl_ask.cxx +++ b/src/fl_ask.cxx @@ -29,6 +29,7 @@ #include "flstring.h" #include <FL/Fl.H> +#include <FL/fl_string.h> #include <FL/fl_ask.H> @@ -664,7 +665,7 @@ void fl_message_title_default(const char *title) { message_title_default = 0; } if (title) - message_title_default = strdup(title); + message_title_default = fl_strdup(title); } /** @} */ |
