This commit is contained in:
Viktor Andreev
2025-07-31 18:13:52 +06:00
parent e8ecb2cdfb
commit 6500e65edc
2 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public:
const size_t getParametersNum() const;
private:
size_t num_parameters; // used to transfer the value to PtgFuncVar
size_t num_parameters = 0; // used to transfer the value to PtgFuncVar
};
typedef boost::shared_ptr<PtgParen> PtgParenPtr;

View File

@ -941,6 +941,7 @@ namespace OOX
return;
m_sText = oReader.GetText3();
m_sText.erase(std::remove(m_sText.begin(), m_sText.end(), '\n'), m_sText.end());
}
std::wstring CFormula::toXML() const
{