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
#ifndef BUDDYINFOWINDOW_H
#define BUDDYINFOWINDOW_H
#include <QDialog>
#include <QAbstractButton>
namespace Ui {
class BuddyInfoWindow;
}
class BuddyInfoWindow : public QDialog
{
Q_OBJECT
public:
explicit BuddyInfoWindow(QWidget *parent = 0);
~BuddyInfoWindow();
private slots:
void on_buttonBox_clicked(QAbstractButton *button);
private:
Ui::BuddyInfoWindow *ui;
};
#endif // BUDDYINFOWINDOW_H