first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
#include "chatwidget.h"
|
||||
|
||||
MainWindow::MainWindow(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::MainWindow)
|
||||
{
|
||||
//ui->setupUi(this);
|
||||
|
||||
//ChatWidget widget = new ChatWidget(this);
|
||||
|
||||
setCentralWidget(new ChatWidget(this));
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Reference in New Issue
Block a user