diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-15 15:13:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-18 07:14:19 +0100 |
commit | 0045ee9b7f028dba5f9a3cad43125c9154169ef0 (patch) | |
tree | f02b7c0377175fb1dd02463e312b489ea5437db1 /cui | |
parent | 65102921c710651bc11cf357878bd0af76d2dd78 (diff) |
convert ColorPickerMode to scoped enum
and drop unused Add constant
Change-Id: I4e4f0d35e4d081883b78e0205ffd7086c9cadf04
Reviewed-on: https://gerrit.libreoffice.org/46587
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tpcolor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/tpcolor.cxx b/cui/source/tabpages/tpcolor.cxx index 185f28fcfcc4..055bf4f19af8 100644 --- a/cui/source/tabpages/tpcolor.cxx +++ b/cui/source/tabpages/tpcolor.cxx @@ -424,7 +424,7 @@ IMPL_LINK_NOARG(SvxColorTabPage, ClickWorkOnHdl_Impl, Button*, void) std::unique_ptr<SvColorDialog> pColorDlg(new SvColorDialog( GetParentDialog() )); pColorDlg->SetColor (aCurrentColor); - pColorDlg->SetMode( svtools::ColorPickerMode_MODIFY ); + pColorDlg->SetMode( svtools::ColorPickerMode::Modify ); if( pColorDlg->Execute() == RET_OK ) { |