summaryrefslogtreecommitdiff
path: root/include/svtools/htmltokn.h
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-20 11:26:40 +0200
committerNoel Grandin <noel@peralex.com>2013-08-22 10:49:27 +0200
commitef0960383f912f4385734ec428f94a00a50dac29 (patch)
treec75b11a7b9f72e89cb7d63edaf0be91222aa0d74 /include/svtools/htmltokn.h
parentba39b8e722b9e96eab8965c605203fe8e8198c93 (diff)
convert include/svtools/htmltokn.h from String to OUString
Change-Id: Idf7401e67fda69655860e7eb3d5c740d77d9e086
Diffstat (limited to 'include/svtools/htmltokn.h')
-rw-r--r--include/svtools/htmltokn.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/svtools/htmltokn.h b/include/svtools/htmltokn.h
index 97e73cb4090a..f7ca353752f0 100644
--- a/include/svtools/htmltokn.h
+++ b/include/svtools/htmltokn.h
@@ -24,19 +24,21 @@
#include <sal/types.h>
#include <tools/solar.h>
-class String;
+namespace rtl {
+ class OUString;
+};
// suche das Char zu dem CharNamen
-sal_Unicode GetHTMLCharName( const String& rName );
+sal_Unicode GetHTMLCharName( const rtl::OUString& rName );
// suche die TokenID zu dem Token
-SVT_DLLPUBLIC int GetHTMLToken( const String& rName );
+SVT_DLLPUBLIC int GetHTMLToken( const rtl::OUString& rName );
// suche die TokenId zu einemm Attribut-Token
-int GetHTMLOption( const String& rName );
+int GetHTMLOption( const rtl::OUString& rName );
// suche die 24-bit-Farbe zu einem Farbnamen (nicht gefunden = ULONG_MAX)
-SVT_DLLPUBLIC sal_uInt32 GetHTMLColor( const String& rName );
+SVT_DLLPUBLIC sal_uInt32 GetHTMLColor( const rtl::OUString& rName );
// beginnen immer ab 256, groesser als ein char
const int HTML_TOKEN_START = 0x100;