summaryrefslogtreecommitdiff
path: root/noncore
authormickeyl <mickeyl>2003-08-10 15:27:46 (UTC)
committer mickeyl <mickeyl>2003-08-10 15:27:46 (UTC)
commitfda68d1a33f1fbe4d34e7db635a841422da8d284 (patch) (unidiff)
tree29cceb485e345ef1a9264e0a34ed5982f13cf4f5 /noncore
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') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/calc2/calc.cpp2
-rw-r--r--noncore/tools/calc2/calc.pro50
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
@@ -28,3 +28,3 @@
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{
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,26 +1,26 @@
1#TEMPLATE = app 1TEMPLATE = app
2#CONFIG += qt release 2CONFIG += qt release
3## Input 3# Input
4#HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h 4HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h
5#SOURCES += calc.cpp main.cpp engine.cpp 5SOURCES += calc.cpp main.cpp engine.cpp
6#INCLUDEPATH += $(OPIEDIR)/include 6INCLUDEPATH += $(OPIEDIR)/include
7#DEPENDPATH += $(OPIEDIR)/include 7DEPENDPATH += $(OPIEDIR)/include
8#LIBS += -lqpe -Wl,-export-dynamic 8LIBS += -lqpe -Wl,-export-dynamic
9#TARGET = calc 9TARGET = calc
10#DESTDIR = $(OPIEDIR)/bin 10DESTDIR = $(OPIEDIR)/bin
11# 11
12#TRANSLATIONS = ../../../i18n/de/calc.pro \ 12TRANSLATIONS = ../../../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