summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2001-01-18 13:06:33 +0000
committerjp <jp@openoffice.org>2001-01-18 13:06:33 +0000
commit137ec5fde1372911680010164589f2189643a5d8 (patch)
tree3f96ae127fc13e78a23ab4792fe361802540e28f /sw/inc
parent241bc767a7828db202c55df36da5aeca1e4bc997 (diff)
remove compiler warnings
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/authfld.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/authfld.hxx b/sw/inc/authfld.hxx
index fcd4662dff44..e248cf7b4abc 100644
--- a/sw/inc/authfld.hxx
+++ b/sw/inc/authfld.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: authfld.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: os $ $Date: 2000-11-16 12:27:25 $
+ * last change: $Author: jp $ $Date: 2001-01-18 14:06:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -116,8 +116,8 @@ class SwAuthorityFieldType : public SwFieldType
SwAuthDataArr* m_pDataArr;
SvLongs* m_pSequArr;
SortKeyArr* m_pSortKeyArr;
- char m_cPrefix;
- char m_cSuffix;
+ sal_Unicode m_cPrefix;
+ sal_Unicode m_cSuffix;
BOOL m_bIsSequence :1;
BOOL m_bSortByDocument :1;
@@ -162,13 +162,13 @@ public:
BOOL IsSequence() const {return m_bIsSequence;}
void SetSequence(BOOL bSet) {m_bIsSequence = bSet;}
- void SetPreSuffix(char cPre, char cSuf)
+ void SetPreSuffix( sal_Unicode cPre, sal_Unicode cSuf)
{
m_cPrefix = cPre;
m_cSuffix = cSuf;
}
- char GetPrefix() const { return m_cPrefix;}
- char GetSuffix() const { return m_cSuffix;}
+ sal_Unicode GetPrefix() const { return m_cPrefix;}
+ sal_Unicode GetSuffix() const { return m_cSuffix;}
BOOL IsSortByDocument() const {return m_bSortByDocument;}
void SetSortByDocument(BOOL bSet) {m_bSortByDocument = bSet;}