Skip to content

Commit

Permalink
Rename TempDecimal to Decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Jul 20, 2012
1 parent 3ff2f58 commit 589c365
Show file tree
Hide file tree
Showing 6 changed files with 155 additions and 155 deletions.
2 changes: 1 addition & 1 deletion common/workunit/workunit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7208,7 +7208,7 @@ void CLocalWUResult::getResultDecimal(void * val, unsigned len, unsigned precisi
const char *xmlVal = p->queryProp("xmlValue");
if (xmlVal)
{
TempDecimal d;
Decimal d;
d.setString(strlen(xmlVal), xmlVal);
if (isSigned)
d.getDecimal(len, precision, val);
Expand Down
2 changes: 1 addition & 1 deletion roxie/ccd/ccdserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29441,7 +29441,7 @@ class CRoxieServerContext : public CSlaveContext, implements IRoxieServerContext
CriticalBlock b(contextCrit);
useContext(sequence).getProp(stepname, x);
}
TempDecimal d;
Decimal d;
d.setString(x.length(), x.str());
if (isSigned)
d.getDecimal(tlen, precision, tgt);
Expand Down
Loading

0 comments on commit 589c365

Please sign in to comment.