pidgin/quail/quail

Make the Room List linked to the Join a chat
soc.2013.phil.quail
2013-06-23, Phil Hannent
5ac5337fc6a2
Make the Room List linked to the Join a chat
#include "accountswindow.h"
#include "ui_accountswindow.h"
#include "accountwindow.h"
AccountsWindow::AccountsWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::AccountsWindow),
m_AccountWindow(0)
{
ui->setupUi(this);
}
AccountsWindow::~AccountsWindow()
{
delete ui;
}
void AccountsWindow::on_btnClose_clicked()
{
close();
}
void AccountsWindow::on_btnAdd_clicked()
{
if (m_AccountWindow == 0)
m_AccountWindow = new AccountWindow(this);
m_AccountWindow->show();
}