Git commit b715d3db8cfb963d76d60b38d1bca8f63f5d4189 by Dr. Robert Marmorstein. Committed on 01/08/2011 at 17:38. Pushed by robertm into branch 'master'. Comment an undocumented side effect of >> operator. M +1 -1 filters/kcells/qpro/libqpro/src/formula.cc http://commits.kde.org/koffice/b715d3db8cfb963d76d60b38d1bca8f63f5d4189 diff --git a/filters/kcells/qpro/libqpro/src/formula.cc b/filters/kcells/qpro/libqpro/src/formula.cc index 96c6c7a..0155de8 100644 --- a/filters/kcells/qpro/libqpro/src/formula.cc +++ b/filters/kcells/qpro/libqpro/src/formula.cc @@ -532,7 +532,7 @@ QpFormula::stringFuncReal(const char*) { char* lString = 0; - cFormula >> lString; + cFormula >> lString; //Allocates a new C-string of length 10 char* lQuoteString = new char[strlen(lString)+3];