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 ABOUTWINDOW_H
#define ABOUTWINDOW_H
#include <QDialog>
namespace Ui {
class AboutWindow;
}
class AboutWindow : public QDialog
{
Q_OBJECT
public:
explicit AboutWindow(QWidget *parent = 0);
~AboutWindow();
public slots:
void slotSetText(QString txt);
private slots:
void on_btnClose_clicked();
private:
Ui::AboutWindow *ui;
};
#endif // ABOUTWINDOW_H