diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:32:32 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:32:32 +0000 |
commit | 15f996d573fbf02bcf4b622fb299fcd3a52b209d (patch) | |
tree | 2c1cff09601dab5fd0f7f041132b58ae94c5375d /sd/source/ui/func/fuline.cxx | |
parent | 85d2a4c357e5b376f3e6e6b65dc7e00a1f2438bb (diff) |
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.
Diffstat (limited to 'sd/source/ui/func/fuline.cxx')
-rw-r--r-- | sd/source/ui/func/fuline.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
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 ())); } |