summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/wrthtml.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-02 22:12:16 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-03 12:14:59 +0000
commit87b8377ab22fbcf444f7c8349e69ad1a77f03f6b (patch)
treed631bf33dbce62cb656ca0dca7ae88591629ac33 /sw/source/filter/html/wrthtml.hxx
parent4373ecda6a3f977f449be3844f7d0e9c63873cf5 (diff)
ByteString->rtl::OString
Diffstat (limited to 'sw/source/filter/html/wrthtml.hxx')
-rw-r--r--sw/source/filter/html/wrthtml.hxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/sw/source/filter/html/wrthtml.hxx b/sw/source/filter/html/wrthtml.hxx
index 537aab8076bc..a493c214bcbe 100644
--- a/sw/source/filter/html/wrthtml.hxx
+++ b/sw/source/filter/html/wrthtml.hxx
@@ -381,8 +381,6 @@ public:
inline void OutCSS1_PropertyAscii( const sal_Char *pProp,
const sal_Char *pVal );
inline void OutCSS1_PropertyAscii( const sal_Char *pProp,
- const ByteString& rVal );
- inline void OutCSS1_PropertyAscii( const sal_Char *pProp,
const rtl::OString& rVal );
inline void OutCSS1_Property( const sal_Char *pProp, const String& rVal );
void OutCSS1_Property( const sal_Char *pProp, const sal_Char *pVal,
@@ -458,7 +456,7 @@ public:
static const SdrObject *GetHTMLControl( const SwDrawFrmFmt& rFmt );
static const SdrObject *GetMarqueeTextObj( const SwDrawFrmFmt& rFmt );
- static sal_uInt16 GetCSS1Selector( const SwFmt *pFmt, ByteString& rToken,
+ static sal_uInt16 GetCSS1Selector( const SwFmt *pFmt, rtl::OString& rToken,
String& rClass, sal_uInt16& rRefPoolId,
String *pPseudo=0 );
@@ -512,12 +510,6 @@ inline void SwHTMLWriter::OutCSS1_PropertyAscii( const sal_Char *pProp,
}
inline void SwHTMLWriter::OutCSS1_PropertyAscii( const sal_Char *pProp,
- const ByteString& rVal )
-{
- OutCSS1_Property( pProp, rVal.GetBuffer(), 0 );
-}
-
-inline void SwHTMLWriter::OutCSS1_PropertyAscii( const sal_Char *pProp,
const rtl::OString& rVal )
{
OutCSS1_Property( pProp, rVal.getStr(), 0 );