Kaydet (Commit) d99c1ecd authored tarafından Caolán McNamara's avatar Caolán McNamara

regenerate list under OSL_DEBUG_LEVEL=2

üst 30ec94d8
......@@ -317,11 +317,6 @@ namespace slideshow
return maSubset;
}
bool DrawShapeSubsetting::hasSubsetShapes() const
{
return !maSubsetShapes.empty();
}
AttributableShapeSharedPtr DrawShapeSubsetting::getSubsetShape( const DocTreeNode& rTreeNode ) const
{
RTL_LOGFILE_CONTEXT( aLog, "::presentation::internal::DrawShapeSubsetting::getSubsetShape()" );
......
......@@ -111,9 +111,6 @@ namespace slideshow
/// Return subset node for this shape
DocTreeNode getSubsetNode () const;
/// Return true, if any child subset shapes exist
bool hasSubsetShapes () const;
/// Get subset shape for given node, if any
AttributableShapeSharedPtr getSubsetShape ( const DocTreeNode& rTreeNode ) const;
......
......@@ -62,20 +62,6 @@ public:
const String& GetHelpStyleSheet()const;
void SetHelpStyleSheet(const String& rStyleSheet);
/** retrieves the help agent's ignore counter for the given URL.
<p> If the counter returned 0, the agent should silently drop any requests for this URL.<br/>
If the counter is greater 0, the agent should display the URL and, if the user ignores it,
decrement the counter by 1.
</p>
*/
sal_Int32 getAgentIgnoreURLCounter( const ::rtl::OUString& _rURL );
/** decrements the help agent's ignore counter for the given URL
@see getAgentIgnoreURLCounter
*/
void decAgentIgnoreURLCounter( const ::rtl::OUString& _rURL );
/** resets the help agent's ignore counter for the given URL
*/
void resetAgentIgnoreURLCounter( const ::rtl::OUString& _rURL );
/** resets the help agent's ignore counter for all URL's
*/
void resetAgentIgnoreURLCounter();
......
......@@ -674,27 +674,6 @@ sal_Bool SvtHelpOptions::IsHelpAgentAutoStartMode() const
// -----------------------------------------------------------------------
sal_Int32 SvtHelpOptions::getAgentIgnoreURLCounter( const ::rtl::OUString& _rURL )
{
return pImp->getAgentIgnoreURLCounter( _rURL );
}
// -----------------------------------------------------------------------
void SvtHelpOptions::decAgentIgnoreURLCounter( const ::rtl::OUString& _rURL )
{
pImp->decAgentIgnoreURLCounter( _rURL );
}
// -----------------------------------------------------------------------
void SvtHelpOptions::resetAgentIgnoreURLCounter( const ::rtl::OUString& _rURL )
{
pImp->resetAgentIgnoreURLCounter( _rURL );
}
// -----------------------------------------------------------------------
void SvtHelpOptions::resetAgentIgnoreURLCounter()
{
pImp->resetAgentIgnoreURLCounter();
......
This diff is collapsed.
......@@ -90,7 +90,7 @@ using ::rtl::OUStringHash;
using ::rtl::OStringBuffer;
using ::rtl::OUStringBuffer;
#if (OSL_DEBUG_LEVEL < 2)
#if (OSL_DEBUG_LEVEL < 3)
#define COMPRESS_PAGES
#else
#define DEBUG_DISABLE_PDFCOMPRESSION // also do not compress streams
......
......@@ -276,11 +276,6 @@ void OOXMLParserState::incContextCount()
}
#if OSL_DEBUG_LEVEL > 1
unsigned int OOXMLParserState::getContextCount() const
{
return mnContexts;
}
void OOXMLParserState::dumpXml( const TagLogger::Pointer_t& pLogger )
{
pLogger->startElement("parserstate");
......
......@@ -111,7 +111,6 @@ public:
#if OSL_DEBUG_LEVEL > 1
public:
unsigned int getContextCount() const;
void dumpXml( const TagLogger::Pointer_t& pLogger );
XPathLogger & getXPathLogger();
#endif
......
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