summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/copydlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-06 13:18:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-07 07:10:49 +0100
commit1a41c0711d10bcfa45c7cd7d56c1e7f0055fa310 (patch)
tree2cc10a6e936d45cdc317717d216c0b3a2e060033 /sd/source/ui/dlg/copydlg.cxx
parent26a016be816826c80fc914a927758a814f29136c (diff)
use more Color in sd
Change-Id: Iefd544a70730dfb760b7a89ff697a86ab4fae685 Reviewed-on: https://gerrit.libreoffice.org/50818 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/dlg/copydlg.cxx')
-rw-r--r--sd/source/ui/dlg/copydlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/copydlg.cxx b/sd/source/ui/dlg/copydlg.cxx
index b5a69b709934..b65bde41f452 100644
--- a/sd/source/ui/dlg/copydlg.cxx
+++ b/sd/source/ui/dlg/copydlg.cxx
@@ -100,10 +100,10 @@ void CopyDlg::dispose()
rStr += OUString::number(m_pMtrFldHeight->GetValue());
rStr += OUString( TOKEN );
- rStr += OUString::number( m_pLbStartColor->GetSelectEntryColor().GetColor() );
+ rStr += OUString::number( sal_uInt32(m_pLbStartColor->GetSelectEntryColor()) );
rStr += OUString( TOKEN );
- rStr += OUString::number( m_pLbEndColor->GetSelectEntryColor().GetColor() );
+ rStr += OUString::number( sal_uInt32(m_pLbEndColor->GetSelectEntryColor()) );
m_pNumFldCopies.clear();
m_pBtnSetViewData.clear();
@@ -194,7 +194,7 @@ void CopyDlg::Reset()
}
else
{
- long nTmp;
+ sal_Int32 nTmp;
nTmp = static_cast<long>(aStr.getToken( 0, TOKEN ).toInt32());
m_pNumFldCopies->SetValue( nTmp );