]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlLog.h
more unicode filenames
[lyx.git] / src / frontends / controllers / ControlLog.h
index 699cab0c256f0ac1f27f80707a9b1df09a58e5ce..7c76010951bdce89da432ffac19470f3b6b589a5 100644 (file)
 
 #include "Dialog.h"
 
+#include "support/filename.h"
+
+namespace lyx {
+namespace frontend {
+
 /**
  * A controller for a read-only text browser.
  */
@@ -34,7 +39,7 @@ public:
        virtual bool isBufferDependent() const { return true; }
 
        /// The title displayed by the dialog reflects the \c LOGTYPE
-       std::string const title() const;
+       lyx::docstring const title() const;
        /// put the log file into the ostream
        void getContents(std::ostream & ss) const;
 
@@ -48,7 +53,10 @@ private:
        };
 
        LOGTYPE type_;
-       std::string logfile_;
+       support::FileName logfile_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // CONTROLLOG_H