js8call/JS8_UI/MessageWindow.cpp

16 lines
329 B
C++
Raw Permalink Normal View History

2026-01-18 12:53:55 -06:00
/**
* \file MessageWindow.cpp
* @brief implementation of the message window dialog for the UI
*/
#include "MessageWindow.h"
#include "ui_MessageWindow.h"
MessageWindow::MessageWindow(QWidget *parent)
: QDialog(parent), ui(new Ui::MessagePanel) {
2019-02-01 15:53:07 -05:00
ui->setupUi(this);
}
MessageWindow::~MessageWindow() { delete ui; }
2019-02-02 17:06:01 -05:00