summaryrefslogtreecommitdiff
path: root/noncore/tools/calc2/calc.cpp
authormickeyl <mickeyl>2003-08-10 15:27:46 (UTC)
committer mickeyl <mickeyl>2003-08-10 15:27:46 (UTC)
commitfda68d1a33f1fbe4d34e7db635a841422da8d284 (patch) (unidiff)
tree29cceb485e345ef1a9264e0a34ed5982f13cf4f5 /noncore/tools/calc2/calc.cpp
parent99ffce74ae9f34c42859d5b86bd974551702836e (diff)
downloadopie-fda68d1a33f1fbe4d34e7db635a841422da8d284.zip
opie-fda68d1a33f1fbe4d34e7db635a841422da8d284.tar.gz
opie-fda68d1a33f1fbe4d34e7db635a841422da8d284.tar.bz2
BUILDFIX: repeating default-arguments in definition
btw., what is or was calc2 supposed to be? It is non-functional, can we remove it to unsupported or trashcan?
Diffstat (limited to 'noncore/tools/calc2/calc.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/calc2/calc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/tools/calc2/calc.cpp b/noncore/tools/calc2/calc.cpp
index 883ab33..f75eb69 100644
--- a/noncore/tools/calc2/calc.cpp
+++ b/noncore/tools/calc2/calc.cpp
@@ -17,25 +17,25 @@
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include <qvaluelist.h> 21#include <qvaluelist.h>
22#include <qpe/qpeapplication.h> 22#include <qpe/qpeapplication.h>
23#include <qdir.h> 23#include <qdir.h>
24#include <qwidgetstack.h> 24#include <qwidgetstack.h>
25 25
26#include "calc.h" 26#include "calc.h"
27#include "plugininterface.h" 27#include "plugininterface.h"
28 28
29calc::calc (QWidget * p = 0, const char *n = 0):QWidget (p, n) 29calc::calc (QWidget * p, const char *n):QWidget (p, n)
30{ 30{
31 setCaption (tr ("Calculator")); 31 setCaption (tr ("Calculator"));
32 32
33// widgets 33// widgets
34 LCD = new QLCDNumber (this); 34 LCD = new QLCDNumber (this);
35 LCD->setMaximumSize (QSize (240, 30)); 35 LCD->setMaximumSize (QSize (240, 30));
36 LCD->setNumDigits(12); 36 LCD->setNumDigits(12);
37LCD->setSegmentStyle(QLCDNumber::Filled); 37LCD->setSegmentStyle(QLCDNumber::Filled);
38 pluginWidgetStack = new QWidgetStack (this); 38 pluginWidgetStack = new QWidgetStack (this);
39 39
40// layout widgets 40// layout widgets
41 calculatorLayout = new QVBoxLayout (this); 41 calculatorLayout = new QVBoxLayout (this);