summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/acredlin.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-27 13:56:58 +0200
committerNoel Grandin <noel@peralex.com>2013-10-04 08:48:59 +0200
commitfbb07536e49f7f80200ae038331fc5281a1e773e (patch)
tree6390e6ed4fc58d028f2ce5cb7e5c404afddfce21 /sc/source/ui/inc/acredlin.hxx
parent568c45f37f78c87ec11ee81ed51d0fa9fe83495e (diff)
convert sc/source/ui/inc/a*.hxx from String to OUString
Change-Id: Ia127776aed43eb634b4a7b87d03000d0d53c3b64
Diffstat (limited to 'sc/source/ui/inc/acredlin.hxx')
-rw-r--r--sc/source/ui/inc/acredlin.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/sc/source/ui/inc/acredlin.hxx b/sc/source/ui/inc/acredlin.hxx
index 5ef3382c6b78..d097dd8e3db9 100644
--- a/sc/source/ui/inc/acredlin.hxx
+++ b/sc/source/ui/inc/acredlin.hxx
@@ -48,27 +48,27 @@ class ScDocument;
class ScViewEntryPtr
{
private:
- String* pAction;
- String* pPos;
- String* pAuthor;
- String* pDate;
- String* pComment;
+ OUString* pAction;
+ OUString* pPos;
+ OUString* pAuthor;
+ OUString* pDate;
+ OUString* pComment;
void* pData;
public:
- String* GetpAction() {return pAction; }
- String* GetpPos() {return pPos; }
- String* GetpAuthor() {return pAuthor; }
- String* GetpDate() {return pDate; }
- String* GetpComment() {return pComment;}
+ OUString* GetpAction() {return pAction; }
+ OUString* GetpPos() {return pPos; }
+ OUString* GetpAuthor() {return pAuthor; }
+ OUString* GetpDate() {return pDate; }
+ OUString* GetpComment() {return pComment;}
void* GetpData() {return pData; }
- void SetpAction (String* pString) {pAction= pString;}
- void SetpPos (String* pString) {pPos = pString;}
- void SetpAuthor (String* pString) {pAuthor= pString;}
- void SetpDate (String* pString) {pDate = pString;}
- void SetpComment(String* pString) {pComment=pString;}
+ void SetpAction (OUString* pString) {pAction= pString;}
+ void SetpPos (OUString* pString) {pPos = pString;}
+ void SetpAuthor (OUString* pString) {pAuthor= pString;}
+ void SetpDate (OUString* pString) {pDate = pString;}
+ void SetpComment(OUString* pString) {pComment=pString;}
void SetpData (void* pdata) {pData =pdata;}
};
@@ -148,7 +148,7 @@ private:
DECL_LINK( AcceptAllHandle, void*);
DECL_LINK( ExpandingHandle, SvxRedlinTable*);
DECL_LINK( SelectHandle, void*);
- DECL_LINK( RefInfoHandle, String*);
+ DECL_LINK( RefInfoHandle, OUString*);
DECL_LINK( UpdateSelectionHdl, void*);
DECL_LINK( ChgTrackModHdl, ScChangeTrack*);