X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fcontrollers%2FControlLog.h;h=7c76010951bdce89da432ffac19470f3b6b589a5;hb=534095ce9e82d0b0f875540f7306ff218df3b5aa;hp=699cab0c256f0ac1f27f80707a9b1df09a58e5ce;hpb=dbd0f58ebc92454451c82a020ec86373de2e5ea9;p=lyx.git diff --git a/src/frontends/controllers/ControlLog.h b/src/frontends/controllers/ControlLog.h index 699cab0c25..7c76010951 100644 --- a/src/frontends/controllers/ControlLog.h +++ b/src/frontends/controllers/ControlLog.h @@ -15,6 +15,11 @@ #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