diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-06 13:34:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-07 07:11:24 +0100 |
commit | 9d1f56903b05841020dfae21dca0c686483b2494 (patch) | |
tree | 4ec33ec50c2781a1893c4a11502d7963d034a305 /sc/inc | |
parent | 1a41c0711d10bcfa45c7cd7d56c1e7f0055fa310 (diff) |
use more Color in sc
Change-Id: Ifdd53fa0eed8cec7878d0f5b9eea1e2c826e3ae5
Reviewed-on: https://gerrit.libreoffice.org/50819
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/appoptio.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index cdc055e07ee2..43a75832be4b 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -57,14 +57,14 @@ public: void SetDetectiveAuto( bool bNew ) { bDetectiveAuto = bNew; } bool GetDetectiveAuto() const { return bDetectiveAuto; } - 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; } + void SetTrackContentColor(Color nNew) { nTrackContentColor = nNew; } + Color GetTrackContentColor() const { return nTrackContentColor; } + void SetTrackInsertColor(Color nNew) { nTrackInsertColor = nNew; } + Color GetTrackInsertColor() const { return nTrackInsertColor; } + void SetTrackDeleteColor(Color nNew) { nTrackDeleteColor = nNew; } + Color GetTrackDeleteColor() const { return nTrackDeleteColor; } + void SetTrackMoveColor(Color nNew) { nTrackMoveColor = nNew; } + Color GetTrackMoveColor() const { return nTrackMoveColor; } ScLkUpdMode GetLinkMode() const { return eLinkMode ;} void SetLinkMode( ScLkUpdMode nSet ) { eLinkMode = nSet;} @@ -92,10 +92,10 @@ private: sal_uInt32 nStatusFunc; bool bAutoComplete; bool bDetectiveAuto; - sal_uInt32 nTrackContentColor; - sal_uInt32 nTrackInsertColor; - sal_uInt32 nTrackDeleteColor; - sal_uInt32 nTrackMoveColor; + Color nTrackContentColor; + Color nTrackInsertColor; + Color nTrackDeleteColor; + Color nTrackMoveColor; ScLkUpdMode eLinkMode; sal_Int32 nDefaultObjectSizeWidth; sal_Int32 nDefaultObjectSizeHeight; |