X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FAlert_pimpl.h;h=09cbefa95c9c07d76f2343ed6c1e6ed2ee4ea50c;hb=39ec3d0eb81f6e3ade7bc183f7590f3a0bcd6cf7;hp=8be61575f2892f431daff8f71973dcdda7b326f9;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/frontends/Alert_pimpl.h b/src/frontends/Alert_pimpl.h index 8be61575f2..09cbefa95c 100644 --- a/src/frontends/Alert_pimpl.h +++ b/src/frontends/Alert_pimpl.h @@ -11,15 +11,16 @@ // GUI-specific implementations -#include "support/std_string.h" +#include +#include -int prompt_pimpl(string const & title, string const & question, +int prompt_pimpl(std::string const & title, std::string const & question, int default_button, int escape_button, - string const & b1, string const & b2, string const & b3); + std::string const & b1, std::string const & b2, std::string const & b3); -void warning_pimpl(string const & title, string const & warning); -void error_pimpl(string const & title, string const & warning); -void information_pimpl(string const & title, string const & warning); +void warning_pimpl(std::string const & title, std::string const & warning); +void error_pimpl(std::string const & title, std::string const & warning); +void information_pimpl(std::string const & title, std::string const & warning); -std::pair const askForText_pimpl(string const & msg, string const & dflt); +std::pair const askForText_pimpl(std::string const & msg, std::string const & dflt);