Davies <mark@mcs.vuw.ac.nz> with changes by me. Pkgsrc-related changes include: * Strongly buildlinkifying. * Using qt2-designer-kde for a uic that understands KDE2 widgets. * Fixing sources to compile with egcs-1.1.2's much-less-than-compliant C++ compiler. Given the rapid development between the 1.0 and 1.1 releases, plus the scope of the applications in the suite, it's difficult to summarize the changes. The major change is that KIllustrator is now named Kontour for trademark reasons. Aside from that, basically everything is more featureful and more stable, plus there are more import/export filters for other application suites.
89 lines
1.6 KiB
Text
89 lines
1.6 KiB
Text
$NetBSD: patch-ab,v 1.2 2001/11/13 21:23:43 jlam 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;
|