Kaydet (Commit) 19576d84 authored tarafından Michael Stahl's avatar Michael Stahl

svx: add debug printing of SvxColumnDescription

Change-Id: I009e3a506d9b3418215341cb7f3e232e7fcfa04b
üst 501ae485
......@@ -146,6 +146,16 @@ struct SVX_DLLPUBLIC SvxColumnDescription
long GetWidth() const;
};
template<typename charT, typename traits>
inline std::basic_ostream<charT, traits> & operator <<(
std::basic_ostream<charT, traits> & stream, SvxColumnDescription const& dsc)
{
return stream << "{ nStart " << dsc.nStart << " nEnd " << dsc.nEnd
<< " bVisible " << dsc.bVisible << " nEndMin " << dsc.nEndMin
<< " nEndMax " << dsc.nEndMax << " }";
}
class SVX_DLLPUBLIC SvxColumnItem : public SfxPoolItem
{
typedef std::vector<SvxColumnDescription> SvxColumnDescriptionVector;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment