diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-28 13:58:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-29 14:10:28 +0300 |
commit | d90b88aae13baf16083e58896a81826b2679cd6f (patch) | |
tree | 4cce51ef44ba5f24dcbcb35010b310055850a738 /src/gui/windows/mailedit.h | |
parent | e7379712454c42cabdc60cf2db11a5906949330f (diff) | |
download | plus-d90b88aae13baf16083e58896a81826b2679cd6f.tar.gz plus-d90b88aae13baf16083e58896a81826b2679cd6f.tar.bz2 plus-d90b88aae13baf16083e58896a81826b2679cd6f.tar.xz plus-d90b88aae13baf16083e58896a81826b2679cd6f.zip |
Allow send money by mail.
Diffstat (limited to 'src/gui/windows/mailedit.h')
-rw-r--r-- | src/gui/windows/mailedit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/windows/mailedit.h b/src/gui/windows/mailedit.h index 0be9c4317..5cd482a53 100644 --- a/src/gui/windows/mailedit.h +++ b/src/gui/windows/mailedit.h @@ -28,6 +28,7 @@ #include "listeners/actionlistener.h" class Button; +class IntTextField; class Label; class TextField; @@ -48,9 +49,11 @@ class MailEdit final : public Window, Button *mCloseButton; Label *mToLabel; Label *mSubjectLabel; + Label *mMoneyLabel; Label *mMessageLabel; TextField *mToField; TextField *mSubjectField; + IntTextField *mMoneyField; TextField *mMessageField; }; |