summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2004-07-18 04:51:25 (UTC)
committer llornkcor <llornkcor>2004-07-18 04:51:25 (UTC)
commit987705b1c4fac4a33b82b10ef1bac3ebdb49b1b8 (patch) (unidiff)
tree0c4ff8001a9c7f190e4d9a44e5f6ca10ac5f598d /noncore
parent3d069bdbbad674fffdc3115888d5ed8fc771366c (diff)
downloadopie-987705b1c4fac4a33b82b10ef1bac3ebdb49b1b8.zip
opie-987705b1c4fac4a33b82b10ef1bac3ebdb49b1b8.tar.gz
opie-987705b1c4fac4a33b82b10ef1bac3ebdb49b1b8.tar.bz2
add qcombobox include
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/newtransaction.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/apps/qashmoney/newtransaction.h b/noncore/apps/qashmoney/newtransaction.h
index 4ee3b9d..db3a5ad 100755
--- a/noncore/apps/qashmoney/newtransaction.h
+++ b/noncore/apps/qashmoney/newtransaction.h
@@ -1,35 +1,36 @@
1#ifndef NEWTRANSACTION_H 1#ifndef NEWTRANSACTION_H
2#define NEWTRANSACTION_H 2#define NEWTRANSACTION_H
3 3
4#include <qlineedit.h> 4#include <qlineedit.h>
5#include <qpushbutton.h> 5#include <qpushbutton.h>
6#include <qlayout.h> 6#include <qlayout.h>
7#include <qcheckbox.h> 7#include <qcheckbox.h>
8#include <qdialog.h> 8#include <qdialog.h>
9#include <qlabel.h> 9#include <qlabel.h>
10#include <qstringlist.h> 10#include <qstringlist.h>
11#include <qhbox.h> 11#include <qhbox.h>
12#include <qcombobox.h>
12 13
13#include "transaction.h" 14#include "transaction.h"
14#include "preferences.h" 15#include "preferences.h"
15 16
16class NewTransaction : public QDialog 17class NewTransaction : public QDialog
17{ 18{
18 Q_OBJECT 19 Q_OBJECT
19 20
20 public: 21 public:
21 22
22 int year, month, day; 23 int year, month, day;
23 24
24 NewTransaction ( QWidget* parent ); 25 NewTransaction ( QWidget* parent );
25 ~NewTransaction(); 26 ~NewTransaction();
26 27
27 QLabel *namelabel; 28 QLabel *namelabel;
28 QHBox *transactionnamebox; 29 QHBox *transactionnamebox;
29 QComboBox* transactionname; 30 QComboBox* transactionname;
30 QPushButton* descriptionbutton; 31 QPushButton* descriptionbutton;
31 32
32 QLabel *amountlabel; 33 QLabel *amountlabel;
33 QHBox *transactionamountbox; 34 QHBox *transactionamountbox;
34 QLineEdit* transactionamount; 35 QLineEdit* transactionamount;
35 QPushButton* calculatorbutton; 36 QPushButton* calculatorbutton;