Files
UltraGrid/gui/QT/terminal.cpp
Martin Pulec bb5b84d9ea Restructuralize directory structure
* content of ultragrid/ subdirector moved to root
2012-07-02 18:24:25 +02:00

13 lines
204 B
C++

#include "terminal.h"
Terminal::Terminal(QWidget *parent) :
QDialog(parent)
{
setupUi(this); // this sets up GUI
}
void Terminal::insertText(QString text)
{
textBrowser->append(text);
}