~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/ahcformdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2010-02-19 09:37:12 UTC
  • mfrom: (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100219093712-e225xvm1wjcf1cgi
Tags: 0.14-2
* comment out only function which uses va_list to work around build
  problems on armel
* Set Standards-Version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        class Client;
37
37
}
38
38
 
 
39
#include "ui_ahcformdlg.h"
 
40
 
39
41
class AHCFormDlg : public QDialog
40
42
{
41
43
        Q_OBJECT
55
57
        void commandExecuted();
56
58
 
57
59
private:
58
 
        QPushButton *pb_prev, *pb_next, *pb_complete, *pb_cancel;
59
 
        XDataWidget *xdata_;
 
60
        Ui::AHCFormDlg ui_;
 
61
        QPushButton* pb_prev_;
 
62
        QPushButton* pb_next_;
 
63
        QPushButton* pb_complete_;
 
64
        QPushButton* pb_cancel_;
 
65
        XDataWidget* xdata_;
 
66
 
60
67
        XMPP::Jid receiver_;
61
68
        QString node_;
62
69
        XMPP::Client* client_;
63
70
        QString sessionId_;
64
 
        BusyWidget* busy_;
65
71
};
66
72
 
67
73
#endif