diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2018-03-23 18:17:31 +0100 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2018-03-23 20:48:41 +0100 |
commit | 154496aefe67b81f80d7c08d12bfb145eddb93ac (patch) | |
tree | f986989c31b4d66f545e91b5cd7b0fda6686a8e2 /sc/inc | |
parent | 524cf62841783b88fe2fd5d68c0c151232880269 (diff) |
Revert "tdf#116241 Customizing value highlighting colors"
This reverts commit fb29b8262488d045a926504725669a362bacb5bb.
Change-Id: I338af7c108bb6386193550ef0603b406c4f7bd99
Reaseon: I will move this to more suitable place "application colors" and extend with protected cell backround.
Reviewed-on: https://gerrit.libreoffice.org/51789
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/viewopti.hxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sc/inc/viewopti.hxx b/sc/inc/viewopti.hxx index 965d1ac73b69..8bc3d380b28a 100644 --- a/sc/inc/viewopti.hxx +++ b/sc/inc/viewopti.hxx @@ -94,15 +94,6 @@ public: void SetGridColor( const Color& rCol, const OUString& rName ) { aGridCol = rCol; aGridColName = rName;} Color const & GetGridColor( OUString* pStrName = nullptr ) const; - void SetValueColor( const Color& rCol ) { aValueCol = rCol; } - Color const & GetValueColor() const { return aValueCol; } - - void SetFormulaColor(const Color& rCol) { aFormulaCol = rCol; } - Color const & GetFormulaColor() const { return aFormulaCol; } - - void SetTextColor(const Color& rCol) { aTextCol = rCol; } - Color const & GetTextColor() const { return aTextCol; } - const ScGridOptions& GetGridOptions() const { return aGridOpt; } void SetGridOptions( const ScGridOptions& rNew ) { aGridOpt = rNew; } SvxGridItem* CreateGridItem() const; @@ -117,9 +108,6 @@ private: Color aGridCol; OUString aGridColName; ScGridOptions aGridOpt; - Color aValueCol; - Color aFormulaCol; - Color aTextCol; }; // Item for the options dialog - View |