]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Alert.h
* src/frontends/qt4/GuiSelection.C
[lyx.git] / src / frontends / Alert.h
index 3b5f3636aa51c60ec0257a51df21cb1eb129e5ce..7bd81ebe4c590d0282e7131ddab6b53120d1db1b 100644 (file)
@@ -15,6 +15,8 @@
 #include "support/lstrings.h"
 
 
+namespace lyx {
+namespace frontend {
 namespace Alert {
 
 /**
@@ -28,21 +30,21 @@ namespace Alert {
  * "Yes" or "No", I will personally come around to your house and
  * slap you with fish, and not in an enjoyable way either.
  */
-int prompt(std::string const & title, std::string const & question,
-           int default_button, int cancel_button,
-          std::string const & b1, std::string const & b2, std::string const & b3 = std::string());
+int prompt(docstring const & title, docstring const & question,
+          int default_button, int cancel_button,
+          docstring const & b1, docstring const & b2, docstring const & b3 = docstring());
 
 /**
  * Display a warning to the user. Title should be a short (general) summary.
  * Only use this if the user cannot perform some remedial action.
  */
-void warning(std::string const & title, std::string const & message);
+void warning(docstring const & title, docstring const & message);
 
 /**
  * Display a warning to the user. Title should be a short (general) summary.
  * Only use this if the user cannot perform some remedial action.
  */
-void error(std::string const & title, std::string const & message);
+void error(docstring const & title, docstring const & message);
 
 /**
  * Informational message. Use very very sparingly. That is, you must
@@ -50,13 +52,14 @@ void error(std::string const & title, std::string const & message);
  * and reciting the Nicene Creed, whilst running uphill and also
  * eating.
  */
-void information(std::string const & title, std::string const & message);
+void information(docstring const & title, docstring const & message);
 
 /// Asks for a text. DO NOT USE !!
-std::pair<bool, std::string> const
-askForText(std::string const & msg,
-          std::string const & dflt = std::string());
+std::pair<bool, docstring> const
+askForText(docstring const & msg, docstring const & dflt = docstring());
 
-}
+} // namespace Alert
+} // namespace frontend
+} // namespace lyx
 
 #endif // LYX_ALERT_H