chatroomselect.cpp 243 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include "chatroomselect.h" #include "ui_chatroomselect.h" ChatroomSelect::ChatroomSelect(QWidget *parent) : QDialog(parent), ui(new Ui::ChatroomSelect) { ui->setupUi(this); } ChatroomSelect::~ChatroomSelect() { delete ui; }