callcatcher: update list
Change-Id: Id31324a6bf36e937cc6396207913e4183253bf04
This commit is contained in:
@@ -494,20 +494,6 @@ void writeConsoleWithStream(::rtl::OUString const & sText, FILE * stream)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef WNT
|
|
||||||
void writeConsoleWithStream(::rtl::OString const & sText, HANDLE stream)
|
|
||||||
{
|
|
||||||
writeConsoleWithStream(OStringToOUString(
|
|
||||||
sText, RTL_TEXTENCODING_UTF8), stream);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
void writeConsoleWithStream(::rtl::OString const & sText, FILE * stream)
|
|
||||||
{
|
|
||||||
fprintf(stream, "%s", sText.getStr());
|
|
||||||
fflush(stream);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void writeConsole(::rtl::OUString const & sText)
|
void writeConsole(::rtl::OUString const & sText)
|
||||||
{
|
{
|
||||||
#ifdef WNT
|
#ifdef WNT
|
||||||
@@ -517,15 +503,6 @@ void writeConsole(::rtl::OUString const & sText)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void writeConsole(::rtl::OString const & sText)
|
|
||||||
{
|
|
||||||
#ifdef WNT
|
|
||||||
writeConsoleWithStream(sText, GetStdHandle(STD_OUTPUT_HANDLE));
|
|
||||||
#else
|
|
||||||
writeConsoleWithStream(sText, stdout);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void writeConsoleError(::rtl::OUString const & sText)
|
void writeConsoleError(::rtl::OUString const & sText)
|
||||||
{
|
{
|
||||||
#ifdef WNT
|
#ifdef WNT
|
||||||
@@ -535,18 +512,6 @@ void writeConsoleError(::rtl::OUString const & sText)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void writeConsoleError(::rtl::OString const & sText)
|
|
||||||
{
|
|
||||||
#ifdef WNT
|
|
||||||
writeConsoleWithStream(sText, GetStdHandle(STD_ERROR_HANDLE));
|
|
||||||
#else
|
|
||||||
writeConsoleWithStream(sText, stderr);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
OUString readConsole()
|
OUString readConsole()
|
||||||
{
|
{
|
||||||
#ifdef WNT
|
#ifdef WNT
|
||||||
@@ -580,14 +545,6 @@ void TRACE(::rtl::OUString const & sText)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void TRACE(::rtl::OString const & sText)
|
|
||||||
{
|
|
||||||
(void) sText;
|
|
||||||
#if OSL_DEBUG_LEVEL > 1
|
|
||||||
writeConsole(sText);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void syncRepositories(
|
void syncRepositories(
|
||||||
bool force, Reference<ucb::XCommandEnvironment> const & xCmdEnv)
|
bool force, Reference<ucb::XCommandEnvironment> const & xCmdEnv)
|
||||||
{
|
{
|
||||||
|
@@ -293,16 +293,6 @@ namespace slideshow
|
|||||||
initCurrentSubsets();
|
initCurrentSubsets();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DrawShapeSubsetting::reset( const DocTreeNode& rShapeSubset,
|
|
||||||
const ::boost::shared_ptr< GDIMetaFile >& rMtf )
|
|
||||||
{
|
|
||||||
reset();
|
|
||||||
mpMtf = rMtf;
|
|
||||||
maSubset = rShapeSubset;
|
|
||||||
|
|
||||||
initCurrentSubsets();
|
|
||||||
}
|
|
||||||
|
|
||||||
void DrawShapeSubsetting::initCurrentSubsets()
|
void DrawShapeSubsetting::initCurrentSubsets()
|
||||||
{
|
{
|
||||||
// only add subset to vector, if it's not empty - that's
|
// only add subset to vector, if it's not empty - that's
|
||||||
|
@@ -86,25 +86,6 @@ namespace slideshow
|
|||||||
*/
|
*/
|
||||||
void reset( const ::boost::shared_ptr< GDIMetaFile >& rMtf );
|
void reset( const ::boost::shared_ptr< GDIMetaFile >& rMtf );
|
||||||
|
|
||||||
/** Reset metafile and subset.
|
|
||||||
|
|
||||||
Use this method to completely reset the
|
|
||||||
ShapeSubsetting, with a new metafile and subset
|
|
||||||
range. Note that any information previously set will
|
|
||||||
be lost, including added subset shapes!
|
|
||||||
|
|
||||||
@param rShapeSubset
|
|
||||||
The subset this object represents (can be empty, then
|
|
||||||
denoting 'represents a whole shape')
|
|
||||||
|
|
||||||
@param rMtf
|
|
||||||
Metafile to retrieve subset info from (must have been
|
|
||||||
generated with verbose text comments switched on).
|
|
||||||
*/
|
|
||||||
void reset( const DocTreeNode& rShapeSubset,
|
|
||||||
const ::boost::shared_ptr< GDIMetaFile >& rMtf );
|
|
||||||
|
|
||||||
|
|
||||||
// Shape subsetting methods
|
// Shape subsetting methods
|
||||||
// ========================================================
|
// ========================================================
|
||||||
|
|
||||||
|
@@ -615,8 +615,6 @@ dbtools::SQLExceptionInfo::SQLExceptionInfo(com::sun::star::sdb::SQLErrorEvent c
|
|||||||
dbtools::SQLExceptionIteratorHelper::SQLExceptionIteratorHelper(com::sun::star::sdb::SQLContext const&)
|
dbtools::SQLExceptionIteratorHelper::SQLExceptionIteratorHelper(com::sun::star::sdb::SQLContext const&)
|
||||||
dbtools::SQLExceptionIteratorHelper::SQLExceptionIteratorHelper(com::sun::star::sdbc::SQLWarning const&)
|
dbtools::SQLExceptionIteratorHelper::SQLExceptionIteratorHelper(com::sun::star::sdbc::SQLWarning const&)
|
||||||
dbtools::getConnection(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
|
dbtools::getConnection(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> const&)
|
||||||
dp_misc::TRACE(rtl::OString const&)
|
|
||||||
dp_misc::writeConsoleError(rtl::OString const&)
|
|
||||||
drawinglayer::attribute::SdrFormTextAttribute::getFormTextShdwTransp() const
|
drawinglayer::attribute::SdrFormTextAttribute::getFormTextShdwTransp() const
|
||||||
drawinglayer::attribute::SdrTextAttribute::isWrongSpell() const
|
drawinglayer::attribute::SdrTextAttribute::isWrongSpell() const
|
||||||
formula::FormulaTokenIterator::First()
|
formula::FormulaTokenIterator::First()
|
||||||
@@ -633,7 +631,6 @@ sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
|
|||||||
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
|
sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
|
||||||
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
|
sd::ToolPanelPaneShell::RegisterInterface(SfxModule*)
|
||||||
sd::ViewShellBase::RegisterFactory(unsigned short)
|
sd::ViewShellBase::RegisterFactory(unsigned short)
|
||||||
slideshow::internal::DrawShapeSubsetting::reset(slideshow::internal::DocTreeNode const&, boost::shared_ptr<GDIMetaFile> const&)
|
|
||||||
std::__cxx1998::multimap<_xmlNode*, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener>, std::less<_xmlNode*>, std::allocator<std::pair<_xmlNode* const, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener> > > >::~multimap()
|
std::__cxx1998::multimap<_xmlNode*, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener>, std::less<_xmlNode*>, std::allocator<std::pair<_xmlNode* const, com::sun::star::uno::Reference<com::sun::star::xml::dom::events::XEventListener> > > >::~multimap()
|
||||||
std::__cxx1998::vector<OrderedEntry*, std::allocator<OrderedEntry*> >::~vector()
|
std::__cxx1998::vector<OrderedEntry*, std::allocator<OrderedEntry*> >::~vector()
|
||||||
std::__cxx1998::vector<ServiceInfo*, std::allocator<ServiceInfo*> >::~vector()
|
std::__cxx1998::vector<ServiceInfo*, std::allocator<ServiceInfo*> >::~vector()
|
||||||
|
Reference in New Issue
Block a user