From 842fc1a254ec13a5de2c2bd47fa20e4bd9746ab6 Mon Sep 17 00:00:00 2001 From: louis Date: Tue, 22 Mar 2016 06:53:45 +0100 Subject: [PATCH] fixed typo --- coreengine/complextypes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreengine/complextypes.c b/coreengine/complextypes.c index 7c9f77a..41feafd 100644 --- a/coreengine/complextypes.c +++ b/coreengine/complextypes.c @@ -1220,7 +1220,7 @@ char *cTextExpr::DeterminateText(void) { strcat(retVal, str); } else if (t->type == eTexttokenType::inttoken) { int value = tokenContainer->IntToken(t->tokenIndex); - if (value > 0) { + if (value >= 0) { cString str = cString::sprintf("%d", value); strcat(retVal, *str); }