diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-01-28 20:38:43 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-01-29 15:41:50 +0100 |
commit | ac3628a412f37cc03ddc65d271db224a3100045b (patch) | |
tree | 90d87a6ecfa4cb2237b88f4b439f451931e90409 /svl | |
parent | 7adcb3b70b1878173ac7028c40d3baea3bd8fc0b (diff) |
Remove double line spacing and unused code.
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/sfontitm.hxx | 27 | ||||
-rw-r--r-- | svl/source/misc/strmadpt.cxx | 1 |
2 files changed, 0 insertions, 28 deletions
diff --git a/svl/inc/svl/sfontitm.hxx b/svl/inc/svl/sfontitm.hxx index 92201e9ad9dd..01be43ffb76f 100644 --- a/svl/inc/svl/sfontitm.hxx +++ b/svl/inc/svl/sfontitm.hxx @@ -68,26 +68,20 @@ public: virtual int operator ==(const SfxPoolItem & rItem) const; virtual SfxPoolItem * Create(SvStream & rStream, USHORT) const; - virtual SvStream & Store(SvStream & rStream, USHORT) const; virtual SfxPoolItem * Clone(SfxItemPool * = 0) const { return new SfxFontItem(*this); } sal_Bool hasFont() const { return m_bHasFont; } - sal_Bool hasColor() const { return m_bHasColor; } - sal_Bool hasFillColor() const { return m_bHasFillColor; } const XubString & getName() const { return m_aName; } - const XubString & getStyleName() const { return m_aStyleName; } const Size & getSize() const { return m_aSize; } - const Color & getColor() const { return m_aColor; } - const Color & getFillColor() const { return m_aFillColor; } rtl_TextEncoding getCharSet() const { return m_nCharSet; } @@ -95,51 +89,30 @@ public: LanguageType getLanguage() const { return m_nLanguage; } sal_Int16 getFamily() const { return m_nFamily; } - sal_Int16 getPitch() const { return m_nPitch; } - sal_Int16 getWeight() const { return m_nWeight; } - sal_Int16 getWidthType() const { return m_nWidthType; } - sal_Int16 getItalic() const { return m_nItalic; } - sal_Int16 getUnderline() const { return m_nUnderline; } - sal_Int16 getStrikeout() const { return m_nStrikeout; } - sal_Int16 getOrientation() const { return m_nOrientation; } - sal_Bool getWordLine() const { return m_bWordLine; } - sal_Bool getOutline() const { return m_bOutline; } - sal_Bool getShadow() const { return m_bShadow; } - sal_Bool getKerning() const { return m_bKerning; } inline void setFont(sal_Int16 nTheFamily, const XubString & rTheName, const XubString & rTheStyleName, sal_Int16 nThePitch, rtl_TextEncoding nTheCharSet); - inline void setWeight(sal_Int16 nTheWeight); - inline void setItalic(sal_Int16 nTheItalic); - inline void setHeight(sal_Int32 nHeight); - inline void setColor(const Color & rTheColor); - inline void setFillColor(const Color & rTheFillColor); - inline void setUnderline(sal_Int16 nTheUnderline); - inline void setStrikeout(sal_Int16 nTheStrikeout); - inline void setOutline(sal_Bool bTheOutline); - inline void setShadow(sal_Bool bTheShadow); - inline void setLanguage(LanguageType nTheLanguage); }; diff --git a/svl/source/misc/strmadpt.cxx b/svl/source/misc/strmadpt.cxx index a5d464e587ce..b0e434bc5d2e 100644 --- a/svl/source/misc/strmadpt.cxx +++ b/svl/source/misc/strmadpt.cxx @@ -96,7 +96,6 @@ public: inline bool isEOF() const; bool addMark(sal_uInt32 nPosition); - bool removeMark(sal_uInt32 nPosition); inline sal_uInt32 getReadPosition() const; |