src/logs/logs.cpp

Go to the documentation of this file.
00001 
00008 #include "logs.h"
00009 
00015 Logs::Logs(QWidget *parent) : QWidget(parent)
00016 {
00017     setupUi(this);
00018 
00019     QObject::connect (actionClear, SIGNAL(triggered()), this, SLOT(clear()));
00020 
00021 }
00022 
00028 void Logs::addLog(QString log)
00029 {
00030     lLogs->insertPlainText(log+'\n');
00031 }
00032 
00036 void Logs::clear()
00037 {
00038     lLogs->clear();
00039 }
00040 

Generated on Mon Mar 16 18:46:05 2009 for QCJM by  doxygen 1.5.4