mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 21:40:15 +00:00
13 lines
204 B
C++
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);
|
|
}
|