summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Andriot <francois.andriot@free.fr>2020-01-06 22:38:16 +0100
committerFrançois Andriot <francois.andriot@free.fr>2020-01-06 22:38:16 +0100
commit9d008f46e1b540304fdb7fb0270e23b7c3f43a68 (patch)
tree939594003a59d62b7a0407cde7885067f894a444
parent01449132bea479503aef1c3543b7aa9cffe268bb (diff)
downloadkoffice-9d008f46e1b540304fdb7fb0270e23b7c3f43a68.tar.gz
koffice-9d008f46e1b540304fdb7fb0270e23b7c3f43a68.zip
Fix FTBFS on openSUSE Tumbleweed
formula.cc:294:1: error: narrowing conversion of '128' from 'int' to 'TQP_INT8' {aka 'char'} [-Wnarrowing] Signed-off-by: François Andriot <francois.andriot@free.fr>
-rw-r--r--filters/kspread/qpro/libqpro/qpro/formula.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/kspread/qpro/libqpro/qpro/formula.h b/filters/kspread/qpro/libqpro/qpro/formula.h
index a0af2af6..c008aabc 100644
--- a/filters/kspread/qpro/libqpro/qpro/formula.h
+++ b/filters/kspread/qpro/libqpro/qpro/formula.h
@@ -35,7 +35,7 @@ protected:
struct QpFormulaConv
{
- TQP_INT8 cOperand;
+ TQP_UINT8 cOperand;
void (*cFunc)(QpFormula& pThis, const char* pArg);
const char* cArg;
};