Unused writerfilter::dump()
Change-Id: I226d4338e22585a9a03377feb9d39788346316be
This commit is contained in:
@@ -327,7 +327,3 @@ std::vector<rtl::Reference<oox::xls::(anonymous namespace)::WorkerThread>, std::
|
||||
svl::SharedStringPool::SharedStringPool()
|
||||
svx::frame::Style::Style(editeng::SvxBorderLine const&, double, unsigned short)
|
||||
vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
|
||||
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, boost::shared_ptr<writerfilter::Reference<writerfilter::BinaryObj> >)
|
||||
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, boost::shared_ptr<writerfilter::Reference<writerfilter::Properties> >)
|
||||
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, rtl::OUString const&)
|
||||
writerfilter::dump(writerfilter::OutputWithDepth<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >&, char const*, unsigned int)
|
||||
|
@@ -397,15 +397,6 @@ protected:
|
||||
~Sprm() {}
|
||||
};
|
||||
|
||||
/**
|
||||
Creates handler for a stream.
|
||||
*/
|
||||
void WRITERFILTER_RESOURCEMODEL_DLLPUBLIC dump(OutputWithDepth<string> & o, const char * name, writerfilter::Reference<Properties>::Pointer_t props);
|
||||
void WRITERFILTER_RESOURCEMODEL_DLLPUBLIC dump(OutputWithDepth<string> & o, const char * name, sal_uInt32 n);
|
||||
void WRITERFILTER_RESOURCEMODEL_DLLPUBLIC dump(OutputWithDepth<string> & /*o*/, const char * /*name*/,
|
||||
const OUString & /*str*/);
|
||||
void WRITERFILTER_RESOURCEMODEL_DLLPUBLIC dump(OutputWithDepth<string> & o, const char * name, writerfilter::Reference<BinaryObj>::Pointer_t binary);
|
||||
|
||||
}
|
||||
|
||||
#endif // INCLUDED_WW8RESOURCEMODEL_HXX
|
||||
|
@@ -41,32 +41,6 @@ public:
|
||||
|
||||
ResourceModelOutputWithDepth output;
|
||||
|
||||
void dump(OutputWithDepth<string> & /*o*/, const char * /*name*/,
|
||||
writerfilter::Reference<Properties>::Pointer_t /*props*/)
|
||||
{
|
||||
}
|
||||
|
||||
void dump(OutputWithDepth<string> & o, const char * name, sal_uInt32 n)
|
||||
{
|
||||
char sBuffer[256];
|
||||
snprintf(sBuffer, sizeof(sBuffer), "%" SAL_PRIuUINT32, n);
|
||||
string tmpStr = name;
|
||||
tmpStr += "=";
|
||||
tmpStr += sBuffer;
|
||||
|
||||
o.addItem(tmpStr);
|
||||
}
|
||||
|
||||
void dump(OutputWithDepth<string> & /*o*/, const char * /*name*/,
|
||||
const OUString & /*str*/)
|
||||
{
|
||||
}
|
||||
|
||||
void dump(OutputWithDepth<string> & /*o*/, const char * /*name*/,
|
||||
writerfilter::Reference<BinaryObj>::Pointer_t /*binary*/)
|
||||
{
|
||||
}
|
||||
|
||||
string gInfo = "";
|
||||
// ------- WW8TableDataHandler ---------
|
||||
|
||||
|
Reference in New Issue
Block a user