diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-04-07 07:24:08 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-04-07 07:24:08 +0000 |
commit | 10e8ad8b834f2d4963f9c3cf7b323fbfeac2b24d (patch) | |
tree | d5f66121027a422c623b5f7117211e41aec8732a /sc/inc/appoptio.hxx | |
parent | d9da8f78a49fd6325d55ae2bac4a7d39c68e1cbd (diff) |
INTEGRATION: CWS sixtyfour04 (1.6.142); FILE MERGED
2006/03/15 16:14:03 cmc 1.6.142.1: #i63168# make sc 64bit happy
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r-- | sc/inc/appoptio.hxx | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index 99dd3630b978..90542f211eb7 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -4,9 +4,9 @@ * * $RCSfile: appoptio.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2005-09-08 17:22:24 $ + * last change: $Author: vg $ $Date: 2006-04-07 08:24:08 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -86,14 +86,14 @@ public: void SetDetectiveAuto( BOOL bNew ) { bDetectiveAuto = bNew; } BOOL GetDetectiveAuto() const { return bDetectiveAuto; } - void SetTrackContentColor(ULONG nNew) { nTrackContentColor = nNew; } - ULONG GetTrackContentColor() const { return nTrackContentColor; } - void SetTrackInsertColor(ULONG nNew) { nTrackInsertColor = nNew; } - ULONG GetTrackInsertColor() const { return nTrackInsertColor; } - void SetTrackDeleteColor(ULONG nNew) { nTrackDeleteColor = nNew; } - ULONG GetTrackDeleteColor() const { return nTrackDeleteColor; } - void SetTrackMoveColor(ULONG nNew) { nTrackMoveColor = nNew; } - ULONG GetTrackMoveColor() const { return nTrackMoveColor; } + void SetTrackContentColor(sal_uInt32 nNew) { nTrackContentColor = nNew; } + sal_uInt32 GetTrackContentColor() const { return nTrackContentColor; } + void SetTrackInsertColor(sal_uInt32 nNew) { nTrackInsertColor = nNew; } + sal_uInt32 GetTrackInsertColor() const { return nTrackInsertColor; } + void SetTrackDeleteColor(sal_uInt32 nNew) { nTrackDeleteColor = nNew; } + sal_uInt32 GetTrackDeleteColor() const { return nTrackDeleteColor; } + void SetTrackMoveColor(sal_uInt32 nNew) { nTrackMoveColor = nNew; } + sal_uInt32 GetTrackMoveColor() const { return nTrackMoveColor; } ScLkUpdMode GetLinkMode() const { return eLinkMode ;} void SetLinkMode( ScLkUpdMode nSet ) { eLinkMode = nSet;} @@ -117,10 +117,10 @@ private: USHORT nStatusFunc; BOOL bAutoComplete; BOOL bDetectiveAuto; - ULONG nTrackContentColor; - ULONG nTrackInsertColor; - ULONG nTrackDeleteColor; - ULONG nTrackMoveColor; + sal_uInt32 nTrackContentColor; + sal_uInt32 nTrackInsertColor; + sal_uInt32 nTrackDeleteColor; + sal_uInt32 nTrackMoveColor; ScLkUpdMode eLinkMode; INT32 nDefaultObjectSizeWidth; INT32 nDefaultObjectSizeHeight; |