]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlLog.C
This file is part of LyX, the document processor.
[lyx.git] / src / frontends / controllers / ControlLog.C
1 /**
2  * \file ControlLog.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #include <config.h>
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif
17
18 #include "ControlLog.h"
19 #include "buffer.h"
20
21
22
23 ControlLog::ControlLog(LyXView & lv, Dialogs & d)
24         : ControlDialogBD(lv, d)
25 {}
26
27
28 void ControlLog::setParams()
29 {
30         logfile_ = buffer()->getLogName();
31 }
32
33
34 void ControlLog::clearParams()
35 {
36         logfile_.second.erase();
37 }