From 15f996d573fbf02bcf4b622fb299fcd3a52b209d Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Mon, 19 Jun 2006 11:32:32 +0000 Subject: INTEGRATION: CWS warnings01 (1.7.150); FILE MERGED 2006/05/12 16:40:35 sb 1.7.150.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162. --- sd/source/ui/func/fuline.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sd/source/ui/func/fuline.cxx') diff --git a/sd/source/ui/func/fuline.cxx b/sd/source/ui/func/fuline.cxx index 79b71d01f1d9..2c8e33ea4bc7 100644 --- a/sd/source/ui/func/fuline.cxx +++ b/sd/source/ui/func/fuline.cxx @@ -4,9 +4,9 @@ * * $RCSfile: fuline.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-12-14 16:59:36 $ + * last change: $Author: hr $ $Date: 2006-06-19 12:32:32 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -123,13 +123,13 @@ void FuLine::DoExecute( SfxRequest& rReq ) XLineStyle eILineStyle = rILineStyleItem.GetValue (); const XLineDashItem &rILineDashItem = (const XLineDashItem &) aInputAttr.Get (XATTR_LINEDASH); - const XDash &rIDash = rILineDashItem.GetValue (); + const XDash &rIDash = rILineDashItem.GetDashValue (); const XLineWidthItem &rILineWidthItem = (const XLineWidthItem &) aInputAttr.Get (XATTR_LINEWIDTH); long nILineWidth = rILineWidthItem.GetValue (); const XLineColorItem &rILineColorItem = (const XLineColorItem &) aInputAttr.Get (XATTR_LINECOLOR); - const Color &rIColor = rILineColorItem.GetValue (); + const Color &rIColor = rILineColorItem.GetColorValue (); const SdrObject* pObj = NULL; const SdrMarkList& rMarkList = pView->GetMarkedObjectList(); @@ -158,13 +158,13 @@ void FuLine::DoExecute( SfxRequest& rReq ) XLineStyle eOLineStyle = rOLineStyleItem.GetValue (); const XLineDashItem &rOLineDashItem = (const XLineDashItem &) pOutputAttr->Get (XATTR_LINEDASH); - const XDash &rODash = rOLineDashItem.GetValue (); + const XDash &rODash = rOLineDashItem.GetDashValue (); const XLineWidthItem &rOLineWidthItem = (const XLineWidthItem &) pOutputAttr->Get (XATTR_LINEWIDTH); long nOLineWidth = rOLineWidthItem.GetValue (); const XLineColorItem &rOLineColorItem = (const XLineColorItem &) pOutputAttr->Get (XATTR_LINECOLOR); - const Color &rOColor = rOLineColorItem.GetValue (); + const Color &rOColor = rOLineColorItem.GetColorValue (); pView->SetAttributes (*(pDlg->GetOutputItemSet ())); } -- cgit