]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Alert_pimpl.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / Alert_pimpl.h
index 4fb89f197641b707098ae7cabbfd4a3d07a55ae1..09cbefa95c9c07d76f2343ed6c1e6ed2ee4ea50c 100644 (file)
@@ -9,16 +9,18 @@
  * Full author contact details are available in file CREDITS.
  */
 
-#include "debug.h"
-
 // GUI-specific implementations
 
-int prompt_pimpl(string const & title, string const & question,
+#include <utility>
+#include <string>
+
+
+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<bool, string> const askForText_pimpl(string const & msg, string const & dflt);
+std::pair<bool, std::string> const askForText_pimpl(std::string const & msg, std::string const & dflt);