author | mickeyl <mickeyl> | 2003-08-10 15:27:46 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-08-10 15:27:46 (UTC) |
commit | fda68d1a33f1fbe4d34e7db635a841422da8d284 (patch) (unidiff) | |
tree | 29cceb485e345ef1a9264e0a34ed5982f13cf4f5 | |
parent | 99ffce74ae9f34c42859d5b86bd974551702836e (diff) | |
download | opie-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?
-rw-r--r-- | noncore/tools/calc2/calc.cpp | 2 | ||||
-rw-r--r-- | noncore/tools/calc2/calc.pro | 50 |
2 files changed, 26 insertions, 26 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 | |||
@@ -26,7 +26,7 @@ | |||
26 | #include "calc.h" | 26 | #include "calc.h" |
27 | #include "plugininterface.h" | 27 | #include "plugininterface.h" |
28 | 28 | ||
29 | calc::calc (QWidget * p = 0, const char *n = 0):QWidget (p, n) | 29 | calc::calc (QWidget * p, const char *n):QWidget (p, n) |
30 | { | 30 | { |
31 | setCaption (tr ("Calculator")); | 31 | setCaption (tr ("Calculator")); |
32 | 32 | ||
diff --git a/noncore/tools/calc2/calc.pro b/noncore/tools/calc2/calc.pro index 8dfba95..c9f5fa1 100644 --- a/noncore/tools/calc2/calc.pro +++ b/noncore/tools/calc2/calc.pro | |||
@@ -1,28 +1,28 @@ | |||
1 | #TEMPLATE = app | 1 | TEMPLATE = app |
2 | #CONFIG += qt release | 2 | CONFIG += qt release |
3 | ## Input | 3 | # Input |
4 | #HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h | 4 | HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h |
5 | #SOURCES += calc.cpp main.cpp engine.cpp | 5 | SOURCES += calc.cpp main.cpp engine.cpp |
6 | #INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | #DEPENDPATH += $(OPIEDIR)/include | 7 | DEPENDPATH += $(OPIEDIR)/include |
8 | #LIBS += -lqpe -Wl,-export-dynamic | 8 | LIBS += -lqpe -Wl,-export-dynamic |
9 | #TARGET = calc | 9 | TARGET = calc |
10 | #DESTDIR = $(OPIEDIR)/bin | 10 | DESTDIR = $(OPIEDIR)/bin |
11 | # | 11 | |
12 | #TRANSLATIONS = ../../../i18n/de/calc.pro \ | 12 | TRANSLATIONS = ../../../i18n/de/calc.pro \ |
13 | # ../../../i18n/en/calc.pro \ | 13 | ../../../i18n/en/calc.pro \ |
14 | # ../../../i18n/es/calc.pro \ | 14 | ../../../i18n/es/calc.pro \ |
15 | # ../../../i18n/fr/calc.pro \ | 15 | ../../../i18n/fr/calc.pro \ |
16 | # ../../../i18n/hu/calc.pro \ | 16 | ../../../i18n/hu/calc.pro \ |
17 | # ../../../i18n/ja/calc.pro \ | 17 | ../../../i18n/ja/calc.pro \ |
18 | # ../../../i18n/ko/calc.pro \ | 18 | ../../../i18n/ko/calc.pro \ |
19 | # ../../../i18n/no/calc.pro \ | 19 | ../../../i18n/no/calc.pro \ |
20 | # ../../../i18n/pl/calc.pro \ | 20 | ../../../i18n/pl/calc.pro \ |
21 | # ../../../i18n/pt/calc.pro \ | 21 | ../../../i18n/pt/calc.pro \ |
22 | # ../../../i18n/pt_BR/calc.pro \ | 22 | ../../../i18n/pt_BR/calc.pro \ |
23 | # ../../../i18n/sl/calc.pro \ | 23 | ../../../i18n/sl/calc.pro \ |
24 | # ../../../i18n/zh_CN/calc.pro \ | 24 | ../../../i18n/zh_CN/calc.pro \ |
25 | # ../../../i18n/zh_TW/calc.pro | 25 | ../../../i18n/zh_TW/calc.pro |
26 | 26 | ||
27 | 27 | ||
28 | 28 | ||