summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/copydlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/inc/copydlg.hxx')
-rw-r--r--sd/source/ui/inc/copydlg.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/inc/copydlg.hxx b/sd/source/ui/inc/copydlg.hxx
index 33a97c589943..98ac00ab7318 100644
--- a/sd/source/ui/inc/copydlg.hxx
+++ b/sd/source/ui/inc/copydlg.hxx
@@ -28,8 +28,6 @@
#include <sfx2/basedlgs.hxx>
#include <tools/fract.hxx>
-class SvxColorListBox;
-
namespace sd {
class View;
@@ -41,7 +39,8 @@ class CopyDlg
: public SfxModalDialog
{
public:
- CopyDlg(vcl::Window* pWindow, const SfxItemSet& rInAttrs, ::sd::View* pView);
+ CopyDlg( vcl::Window* pWindow, const SfxItemSet& rInAttrs,
+ const XColorListRef &pColList, ::sd::View* pView );
virtual ~CopyDlg() override;
virtual void dispose() override;
@@ -59,17 +58,18 @@ private:
VclPtr<MetricField> m_pMtrFldWidth;
VclPtr<MetricField> m_pMtrFldHeight;
- VclPtr<SvxColorListBox> m_pLbStartColor;
+ VclPtr<ColorLB> m_pLbStartColor;
VclPtr<FixedText> m_pFtEndColor;
- VclPtr<SvxColorListBox> m_pLbEndColor;
+ VclPtr<ColorLB> m_pLbEndColor;
VclPtr<PushButton> m_pBtnSetDefault;
const SfxItemSet& mrOutAttrs;
+ XColorListRef mpColorList;
Fraction maUIScale;
::sd::View* mpView;
- DECL_LINK( SelectColorHdl, SvxColorListBox&, void );
+ DECL_LINK( SelectColorHdl, ListBox&, void );
DECL_LINK( SetViewData, Button*, void );
DECL_LINK( SetDefault, Button*, void );
};