summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-07-28 16:58:57 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-07-28 17:17:53 +0100
commitb806b638b931888c080c076c78970cac13f75057 (patch)
treeab5cb9041b2a62fba1cbc1d40232516aeb9edd0f /sw
parenteed641ac455b7715d9544636c428050cc15488f9 (diff)
update comments about SvPtrArr
Change-Id: I627f65581f457f0b1485bc30abcd5e4a10434d14
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/shellio.hxx1
-rw-r--r--sw/source/core/access/acccell.cxx2
-rw-r--r--sw/source/core/access/acctable.cxx4
-rw-r--r--sw/source/core/unocore/swunohelper.cxx2
4 files changed, 4 insertions, 5 deletions
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx
index 5bfbb721cac2..734911411f0e 100644
--- a/sw/inc/shellio.hxx
+++ b/sw/inc/shellio.hxx
@@ -54,7 +54,6 @@ class SfxFilter;
class SfxItemPool;
class SfxItemSet;
class SfxMedium;
-class SvPtrarr;
class SvStream;
class SvxFontItem;
class SvxMacroTableDtor;
diff --git a/sw/source/core/access/acccell.cxx b/sw/source/core/access/acccell.cxx
index 4c6b622c725e..914a76679ea7 100644
--- a/sw/source/core/access/acccell.cxx
+++ b/sw/source/core/access/acccell.cxx
@@ -71,7 +71,7 @@ sal_Bool SwAccessibleCell::IsSelected()
const SwCellFrm *pCFrm =
static_cast< const SwCellFrm * >( GetFrm() );
SwTableBox *pBox =
- const_cast< SwTableBox *>( pCFrm->GetTabBox() ); //SVPtrArr!
+ const_cast< SwTableBox *>( pCFrm->GetTabBox() );
bRet = pCSh->GetTableCrsr()->GetBoxes().find( pBox ) != pCSh->GetTableCrsr()->GetBoxes().end();
}
}
diff --git a/sw/source/core/access/acctable.cxx b/sw/source/core/access/acctable.cxx
index 744b42e0e98c..735c314b7a9e 100644
--- a/sw/source/core/access/acctable.cxx
+++ b/sw/source/core/access/acctable.cxx
@@ -294,7 +294,7 @@ void SwAccessibleTableData_Impl::GetSelection(
const SwCellFrm *pCFrm =
static_cast < const SwCellFrm * >( pLower );
SwTableBox *pBox =
- const_cast< SwTableBox *>( pCFrm->GetTabBox() ); //SVPtrArr!
+ const_cast< SwTableBox *>( pCFrm->GetTabBox() );
if( rSelBoxes.find( pBox ) == rSelBoxes.end() )
{
const Int32Set_Impl rRowsOrCols =
@@ -1198,7 +1198,7 @@ sal_Bool SAL_CALL SwAccessibleTable::isAccessibleSelected(
{
const SwCellFrm *pCFrm = static_cast < const SwCellFrm * >( pFrm );
SwTableBox *pBox =
- const_cast< SwTableBox *>( pCFrm->GetTabBox() ); //SVPtrArr!
+ const_cast< SwTableBox *>( pCFrm->GetTabBox() );
bRet = pSelBoxes->find( pBox ) != pSelBoxes->end();
}
}
diff --git a/sw/source/core/unocore/swunohelper.cxx b/sw/source/core/unocore/swunohelper.cxx
index b5f2bb87526a..01fb1921efd0 100644
--- a/sw/source/core/unocore/swunohelper.cxx
+++ b/sw/source/core/unocore/swunohelper.cxx
@@ -199,7 +199,7 @@ sal_Bool UCB_IsDirectory( const String& rURL )
// get a list of files from the folder of the URL
// options: pExtension = 0 -> all, else this specific extension
// pDateTime != 0 -> returns also the modified date/time of
- // the files in a SvPtrarr -->
+ // the files in a std::vector<String*> -->
// !! objects must be deleted from the caller!!
bool UCB_GetFileListOfFolder( const String& rURL,
std::vector<String*>& rList,