Unused writerfilter::dump()

Change-Id: I226d4338e22585a9a03377feb9d39788346316be
This commit is contained in:
Miklos Vajna
2014-02-26 21:52:58 +01:00
parent 05e7456b00
commit ed2d5968fa
3 changed files with 0 additions and 39 deletions

View File

@@ -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)

View File

@@ -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

View File

@@ -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 ---------