Example #1
0
format_t::format_t(CGlobalRecords& gRecords, const ustring& fmtstr) :
	formatstr(),
	index(0),
	m_usage_counter(0),
	m_GlobalRecords(gRecords)
{
	gRecords.wide2str16(fmtstr, formatstr);
}
Example #2
0
xlslib_core::label_t::label_t(CGlobalRecords& gRecords,
							  unsigned32_t rowval, unsigned32_t colval, const std::ustring& labelstrval, xf_t* pxfval) :
	cell_t(gRecords, rowval, colval, pxfval),
	strLabel(),
	inSST(false)
{
	gRecords.wide2str16(labelstrval, strLabel);
	setType();
}
Example #3
0
note_t::note_t(CGlobalRecords& gRecords, unsigned32_t rowval, unsigned32_t colval, const ustring& msg, const ustring& auth, xf_t* pxfval) :
	cell_t(gRecords, rowval, colval, pxfval)
{
	gRecords.wide2str16(msg, this->text);
	gRecords.wide2str16(auth, this->author);
}