pidgin/quail/quail

Setup the signal slots in the buddy list
soc.2013.phil.quail
2013-07-01, Phil Hannent
87bc001209e9
Setup the signal slots in the buddy list
#include "buddyinfowindow.h"
#include "ui_buddyinfowindow.h"
BuddyInfoWindow::BuddyInfoWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::BuddyInfoWindow)
{
ui->setupUi(this);
}
BuddyInfoWindow::~BuddyInfoWindow()
{
delete ui;
}
void BuddyInfoWindow::on_buttonBox_clicked(QAbstractButton *button)
{
Q_UNUSED(button)
close();
}