summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/wrthtml.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-29 08:57:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-29 09:05:51 +0100
commit8e607be954410d8dc5bac4071d30cf03ce55cadf (patch)
tree536f10553fe055d04fbe32501beabb755d715a7f /sw/source/filter/html/wrthtml.hxx
parentf3d9e12d087a4e907d6f505dfe27c10b765ea120 (diff)
remove deprecated ByteString::CreateFromInt64
Diffstat (limited to 'sw/source/filter/html/wrthtml.hxx')
-rw-r--r--sw/source/filter/html/wrthtml.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sw/source/filter/html/wrthtml.hxx b/sw/source/filter/html/wrthtml.hxx
index 61b7e99a9bf3..68e8d2e30828 100644
--- a/sw/source/filter/html/wrthtml.hxx
+++ b/sw/source/filter/html/wrthtml.hxx
@@ -381,6 +381,8 @@ public:
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,
const String *pSVal );
@@ -514,6 +516,12 @@ inline void SwHTMLWriter::OutCSS1_PropertyAscii( const sal_Char *pProp,
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 );
+}
+
inline void SwHTMLWriter::OutCSS1_Property( const sal_Char *pProp,
const String& rVal )
{