lyx_mirror/src/frontends/qt4/QLog.C
Peter Kümmel df55785b5a compile qt4 three times faster with msvc:
- only trivial renaming
 - one used variable removed



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17514 a592a061-630c-0410-9148-cb99ea01b6c8
2007-03-22 23:07:24 +00:00

52 lines
884 B
C

/**
* \file QLog.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "QLog.h"
#include "QLogDialog.h"
#include "qt_helpers.h"
#include "controllers/ControlLog.h"
#include <sstream>
#include <QTextBrowser>
#include <QPushButton>
namespace lyx {
namespace frontend {
typedef QController<ControlLog, QView<QLogDialog> > log_base_class;
QLog::QLog(Dialog & parent)
: log_base_class(parent, lyx::docstring())
{}
void QLog::build_dialog()
{
dialog_.reset(new QLogDialog(this));
}
void QLog::update_contents()
{
setTitle(controller().title());
std::ostringstream ss;
controller().getContents(ss);
dialog_->logTB->setPlainText(toqstr(ss.str()));
}
} // namespace frontend
} // namespace lyx