summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/transferdialog.cpp
Unidiff
Diffstat (limited to 'noncore/apps/qashmoney/transferdialog.cpp') (more/less context) (show whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/transferdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/qashmoney/transferdialog.cpp b/noncore/apps/qashmoney/transferdialog.cpp
index 7bc3eb0..f85c740 100755
--- a/noncore/apps/qashmoney/transferdialog.cpp
+++ b/noncore/apps/qashmoney/transferdialog.cpp
@@ -88,25 +88,25 @@ void TransferDialog::showCalendar ()
88int TransferDialog::getDay () 88int TransferDialog::getDay ()
89 { 89 {
90 return day; 90 return day;
91 } 91 }
92 92
93int TransferDialog::getMonth () 93int TransferDialog::getMonth ()
94 { 94 {
95 return month; 95 return month;
96 } 96 }
97 97
98int TransferDialog::getYear () 98int TransferDialog::getYear ()
99 { 99 {
100 return day; 100 return year;
101 } 101 }
102 102
103void TransferDialog::showCalculator () 103void TransferDialog::showCalculator ()
104 { 104 {
105 Calculator *calculator = new Calculator ( this ); 105 Calculator *calculator = new Calculator ( this );
106 if ( calculator->exec () == QDialog::Accepted ) 106 if ( calculator->exec () == QDialog::Accepted )
107 amount->setText ( calculator->display->text() ); 107 amount->setText ( calculator->display->text() );
108 } 108 }
109 109
110 110
111 111
112 112