$NetBSD: patch-ab,v 1.1.1.1 2002/10/08 14:07:03 martti Exp $

--- filters/kspread/qpro/libqpro/src/formula.cc.orig	Wed Jun 27 04:43:31 2001
+++ filters/kspread/qpro/libqpro/src/formula.cc
@@ -320,6 +320,84 @@
 }
 
 void
+QpFormula::binaryOperand(QpFormula& pThis, const char* pOper)
+{
+    pThis.binaryOperandReal(pOper);
+}
+
+void
+QpFormula::floatFunc(QpFormula& pThis, const char* pFunc)
+{
+    pThis.floatFuncReal(pFunc);
+}
+
+void
+QpFormula::absKludge(QpFormula& pThis, const char* pFunc)
+{
+    pThis.absKludgeReal(pFunc);
+}
+
+void
+QpFormula::func0(QpFormula& pThis, const char* pFunc)
+{
+    pThis.func0Real(pFunc);
+}
+
+void
+QpFormula::func1(QpFormula& pThis, const char* pFunc)
+{
+    pThis.func1Real(pFunc);
+}
+
+void
+QpFormula::func2(QpFormula& pThis, const char* pFunc)
+{
+    pThis.func2Real(pFunc);
+}
+
+void
+QpFormula::func3(QpFormula& pThis, const char* pFunc)
+{
+    pThis.func3Real(pFunc);
+}
+
+void
+QpFormula::func4(QpFormula& pThis, const char* pFunc)
+{
+    pThis.func4Real(pFunc);
+}
+
+void
+QpFormula::funcV(QpFormula& pThis, const char* pFunc)
+{
+    pThis.funcVReal(pFunc);
+}
+
+void
+QpFormula::intFunc(QpFormula& pThis, const char* pFunc)
+{
+    pThis.intFuncReal(pFunc);
+}
+
+void
+QpFormula::ref(QpFormula& pThis, const char* pFunc)
+{
+    pThis.refReal(pFunc);
+}
+
+void
+QpFormula::stringFunc(QpFormula& pThis, const char* pFunc)
+{
+    pThis.stringFuncReal(pFunc);
+}
+
+void
+QpFormula::unaryOperand(QpFormula& pThis, const char* pOper)
+{
+    pThis.unaryOperandReal(pOper);
+}
+
+void
 QpFormula::argSeparator(const char* pArg)
 {
    delete [] cArgSeparator;
