summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-05 10:42:21 +0200
committerNoel Grandin <noel@peralex.com>2013-08-12 11:56:39 +0200
commit36593cd50c3229b00445fc232fcdf453fcb77cde (patch)
treeac36bc5cd2d2de475f5353e05fd81af06d57fc04 /include/vcl
parentc9eb7eefd19ee5d9ecf5c6d4c2d701f169847a07 (diff)
convert vcl/xtextedt.hxx from String to OUString
Change-Id: I96ad6373fe04e6f936db92c4ce7f50e48e9c5a32
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/xtextedt.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/vcl/xtextedt.hxx b/include/vcl/xtextedt.hxx
index b763e37102c7..66b233b210a1 100644
--- a/include/vcl/xtextedt.hxx
+++ b/include/vcl/xtextedt.hxx
@@ -33,35 +33,35 @@ namespace util {
class VCL_DLLPUBLIC ExtTextEngine : public TextEngine
{
private:
- String maGroupChars;
+ OUString maGroupChars;
public:
ExtTextEngine();
~ExtTextEngine();
- const String& GetGroupChars() const { return maGroupChars; }
- void SetGroupChars( const String& r ) { maGroupChars = r; }
+ const OUString& GetGroupChars() const { return maGroupChars; }
+ void SetGroupChars( const OUString& r ) { maGroupChars = r; }
TextSelection MatchGroup( const TextPaM& rCursor ) const;
- sal_Bool Search( TextSelection& rSel, const ::com::sun::star::util::SearchOptions& rSearchOptions, sal_Bool bForward = sal_True );
+ sal_Bool Search( TextSelection& rSel, const ::com::sun::star::util::SearchOptions& rSearchOptions, sal_Bool bForward = sal_True );
};
class VCL_DLLPUBLIC ExtTextView : public TextView
{
protected:
- sal_Bool ImpIndentBlock( sal_Bool bRight );
+ sal_Bool ImpIndentBlock( sal_Bool bRight );
public:
ExtTextView( ExtTextEngine* pEng, Window* pWindow );
~ExtTextView();
- sal_Bool MatchGroup();
+ sal_Bool MatchGroup();
- sal_Bool Search( const ::com::sun::star::util::SearchOptions& rSearchOptions, sal_Bool bForward );
- sal_uInt16 Replace( const ::com::sun::star::util::SearchOptions& rSearchOptions, sal_Bool bAll, sal_Bool bForward );
+ sal_Bool Search( const ::com::sun::star::util::SearchOptions& rSearchOptions, sal_Bool bForward );
+ sal_uInt16 Replace( const ::com::sun::star::util::SearchOptions& rSearchOptions, sal_Bool bAll, sal_Bool bForward );
- sal_Bool IndentBlock();
- sal_Bool UnindentBlock();
+ sal_Bool IndentBlock();
+ sal_Bool UnindentBlock();
};
#endif // _XTEXTEDT_HXX