diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 16:08:52 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 16:08:52 +0000 |
commit | 2bab1720831f0198f8eb8b4935fdf9ac473f181c (patch) | |
tree | c4d7023e8bf9df4dd77cf81a7e7f8edfe3de4276 /svx | |
parent | 3f4ab858df2af6bdfa23614a178cc6861174f0f1 (diff) |
INTEGRATION: CWS warnings01 (1.15.220); FILE MERGED
2006/04/19 17:33:09 cl 1.15.220.2: warning free code changes
2006/03/10 17:42:59 aw 1.15.220.1: #i55991# warning free changes for unxsol
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/xoutdev/xtabhtch.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/xoutdev/xtabhtch.cxx b/svx/source/xoutdev/xtabhtch.cxx index 3e814d82bd..b015ebff5f 100644 --- a/svx/source/xoutdev/xtabhtch.cxx +++ b/svx/source/xoutdev/xtabhtch.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xtabhtch.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: rt $ $Date: 2005-09-09 01:22:44 $ + * last change: $Author: hr $ $Date: 2006-06-19 17:08:52 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -128,7 +128,7 @@ XHatchEntry* XHatchTable::Remove(long nIndex) /************************************************************************/ -XHatchEntry* XHatchTable::Get(long nIndex) const +XHatchEntry* XHatchTable::GetHatch(long nIndex) const { return (XHatchEntry*) XPropertyTable::Get(nIndex, 0); } @@ -163,7 +163,7 @@ BOOL XHatchTable::CreateBitmapsForUI() /************************************************************************/ -Bitmap* XHatchTable::CreateBitmapForUI( long nIndex, BOOL bDelete ) +Bitmap* XHatchTable::CreateBitmapForUI( long /*nIndex*/, BOOL /*bDelete*/) { return( NULL ); } @@ -301,7 +301,7 @@ XHatchEntry* XHatchList::Remove(long nIndex) /************************************************************************/ -XHatchEntry* XHatchList::Get(long nIndex) const +XHatchEntry* XHatchList::GetHatch(long nIndex) const { return (XHatchEntry*) XPropertyList::Get(nIndex, 0); } @@ -503,7 +503,7 @@ Bitmap* XHatchList::CreateBitmapForUI( long nIndex, BOOL bDelete ) aVDSize.Height() -= (long) ( aVDSize.Height() / aPixelSize.Height() + 1 ); pXFSet->GetItemSet().Put( XFillStyleItem( XFILL_HATCH ) ); - pXFSet->GetItemSet().Put( XFillHatchItem( String(), Get( nIndex )->GetHatch() ) ); + pXFSet->GetItemSet().Put( XFillHatchItem( String(), GetHatch( nIndex )->GetHatch() ) ); //-/ pXOut->SetFillAttr( *pXFSet ); pXOut->SetFillAttr( pXFSet->GetItemSet() ); |