summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/linectrl.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 15:51:03 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 15:51:03 +0000
commitbeefa75fee40ffcef1ed6fb06957dd3327469422 (patch)
tree1d4c7067f19bb4bbff334fae4f10cc97dd52eeb5 /svx/source/tbxctrls/linectrl.cxx
parent05c2103cb236ec38a7a35f8906dc96c741720fc5 (diff)
INTEGRATION: CWS warnings01 (1.11.128); FILE MERGED
2006/05/12 16:20:26 sb 1.11.128.1: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162 (and in some cases reverted previous, problematic changes).
Diffstat (limited to 'svx/source/tbxctrls/linectrl.cxx')
-rw-r--r--svx/source/tbxctrls/linectrl.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx
index 106c9a7cd7d3..17285423e7bc 100644
--- a/svx/source/tbxctrls/linectrl.cxx
+++ b/svx/source/tbxctrls/linectrl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: linectrl.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: kz $ $Date: 2005-11-04 15:48:16 $
+ * last change: $Author: hr $ $Date: 2006-06-19 16:51:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -493,12 +493,12 @@ IMPL_LINK( SvxLineEndWindow, SelectHdl, void *, EMPTYARG )
}
else if( nId % 2 ) // LinienAnfang
{
- XLineEndEntry* pEntry = pLineEndList->Get( ( nId - 1 ) / 2 - 1 );
+ XLineEndEntry* pEntry = pLineEndList->GetLineEnd( ( nId - 1 ) / 2 - 1 );
pLineStartItem = new XLineStartItem( pEntry->GetName(), pEntry->GetLineEnd() );
}
else // LinienEnde
{
- XLineEndEntry* pEntry = pLineEndList->Get( nId / 2 - 2 );
+ XLineEndEntry* pEntry = pLineEndList->GetLineEnd( nId / 2 - 2 );
pLineEndItem = new XLineEndItem( pEntry->GetName(), pEntry->GetLineEnd() );
}
@@ -552,7 +552,7 @@ void SvxLineEndWindow::FillValueSet()
// Temporaer wird ein Eintrag hinzugefuegt, um die UI-Bitmap zu erhalten
XPolygon aNothing( 0 );
pLineEndList->Insert( new XLineEndEntry( aNothing, SVX_RESSTR( RID_SVXSTR_NONE ) ) );
- pEntry = pLineEndList->Get( nCount );
+ pEntry = pLineEndList->GetLineEnd( nCount );
pBmp = pLineEndList->GetBitmap( nCount );
DBG_ASSERT( pBmp, "UI-Bitmap wurde nicht erzeugt" );
@@ -570,7 +570,7 @@ void SvxLineEndWindow::FillValueSet()
for( long i = 0; i < nCount; i++ )
{
- pEntry = pLineEndList->Get( i );
+ pEntry = pLineEndList->GetLineEnd( i );
DBG_ASSERT( pEntry, "Konnte auf LineEndEntry nicht zugreifen" );
pBmp = pLineEndList->GetBitmap( i );
DBG_ASSERT( pBmp, "UI-Bitmap wurde nicht erzeugt" );