diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-13 12:28:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-15 09:11:34 +0200 |
commit | a2669bccb89b3882bca4535a23f1c9ac31a485ad (patch) | |
tree | 54d3092bae120eb179797ad14c52d3f90a8a1ff4 /include | |
parent | f42a7e40489c612c43c77e5de3eea60344ea30cc (diff) |
convert include/svtools/rtftoken.h from String to OUString
Change-Id: I31fffd6aeedefb31600bda959bc3901292829ba3
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/rtftoken.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/svtools/rtftoken.h b/include/svtools/rtftoken.h index 9a1e3dff167c..e2909357686a 100644 --- a/include/svtools/rtftoken.h +++ b/include/svtools/rtftoken.h @@ -20,10 +20,12 @@ #ifndef _RTFTOKEN_H #define _RTFTOKEN_H -class String; +namespace rtl { + class OUString; +}; // suche die TokenID zu dem Token -int GetRTFToken( const String& rSearch ); +int GetRTFToken( const rtl::OUString& rSearch ); enum RTF_TOKEN_RANGES { RTF_NOGROUP = 0x0100, |