Kaydet (Commit) 2cd6c4fb authored tarafından Miklos Vajna's avatar Miklos Vajna

filter: fix dbglevel=2 build of msfilter

Change-Id: Ifb6747f170d7c9928d07cebb0918fdb329e96dbf
Reviewed-on: https://gerrit.libreoffice.org/47778Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
üst 777a05b0
...@@ -148,9 +148,6 @@ class MSFILTER_DLLPUBLIC TBCGeneralInfo : public TBBase ...@@ -148,9 +148,6 @@ class MSFILTER_DLLPUBLIC TBCGeneralInfo : public TBBase
public: public:
TBCGeneralInfo(); TBCGeneralInfo();
bool Read(SvStream &rS) override; bool Read(SvStream &rS) override;
#if OSL_DEBUG_LEVEL > 1
virtual void Print( FILE* ) override;
#endif
void ImportToolBarControlData( CustomToolBarImportHelper&, std::vector< css::beans::PropertyValue >& ); void ImportToolBarControlData( CustomToolBarImportHelper&, std::vector< css::beans::PropertyValue >& );
OUString const & CustomText() { return customText.getString(); } OUString const & CustomText() { return customText.getString(); }
}; };
...@@ -178,9 +175,6 @@ class MSFILTER_DLLPUBLIC TBCMenuSpecific : public TBBase ...@@ -178,9 +175,6 @@ class MSFILTER_DLLPUBLIC TBCMenuSpecific : public TBBase
public: public:
TBCMenuSpecific(); TBCMenuSpecific();
bool Read(SvStream &rS) override; bool Read(SvStream &rS) override;
#if OSL_DEBUG_LEVEL > 1
virtual void Print( FILE* ) override;
#endif
OUString Name(); OUString Name();
}; };
...@@ -198,9 +192,6 @@ public: ...@@ -198,9 +192,6 @@ public:
TBCCDData(); TBCCDData();
virtual ~TBCCDData() override; virtual ~TBCCDData() override;
bool Read(SvStream &rS) override; bool Read(SvStream &rS) override;
#if OSL_DEBUG_LEVEL > 1
virtual void Print( FILE* ) override;
#endif
}; };
class TBCComboDropdownSpecific : public TBBase class TBCComboDropdownSpecific : public TBBase
...@@ -209,9 +200,6 @@ class TBCComboDropdownSpecific : public TBBase ...@@ -209,9 +200,6 @@ class TBCComboDropdownSpecific : public TBBase
public: public:
TBCComboDropdownSpecific( const TBCHeader& header ); TBCComboDropdownSpecific( const TBCHeader& header );
bool Read(SvStream &rS) override; bool Read(SvStream &rS) override;
#if OSL_DEBUG_LEVEL > 1
virtual void Print( FILE* ) override;
#endif
}; };
class TBCBSpecific : public TBBase class TBCBSpecific : public TBBase
...@@ -225,9 +213,6 @@ class TBCBSpecific : public TBBase ...@@ -225,9 +213,6 @@ class TBCBSpecific : public TBBase
public: public:
TBCBSpecific(); TBCBSpecific();
bool Read(SvStream &rS) override; bool Read(SvStream &rS) override;
#if OSL_DEBUG_LEVEL > 1
virtual void Print( FILE* ) override;
#endif
// #TODO just add a getGraphic member here // #TODO just add a getGraphic member here
TBCBitMap* getIcon(); TBCBitMap* getIcon();
TBCBitMap* getIconMask(); TBCBitMap* getIconMask();
......
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