diff options
-rw-r--r-- | sw/source/core/docnode/nodes.cxx | 3 | ||||
-rw-r--r-- | sw/source/core/unocore/unotbl.cxx | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sw/source/core/docnode/nodes.cxx b/sw/source/core/docnode/nodes.cxx index ae5c8958e533..30cc462e41b4 100644 --- a/sw/source/core/docnode/nodes.cxx +++ b/sw/source/core/docnode/nodes.cxx @@ -1665,6 +1665,7 @@ void SwNodes::MoveRange( SwPaM & rPam, SwPosition & rPos, SwNodes& rNodes ) rNodes.IsDocNodes() ? SWFMTFLD_INSERTED : SWFMTFLD_REMOVED ) ); } +///@see SwNodes::_MoveNodes (TODO: seems to be C&P programming here) void SwNodes::_CopyNodes( const SwNodeRange& rRange, const SwNodeIndex& rIndex, sal_Bool bNewFrms, sal_Bool bTblInsDummyNode ) const { @@ -1969,6 +1970,7 @@ SwCntntNode* SwNodes::GoNextSection( SwNodeIndex * pIdx, return 0; } +///@see SwNodes::GoNextSection (TODO: seems to be C&P programming here) SwCntntNode* SwNodes::GoPrevSection( SwNodeIndex * pIdx, int bSkipHidden, int bSkipProtect ) const { @@ -2168,6 +2170,7 @@ void SwNodes::ForEach( const SwNodeIndex& rStart, const SwNodeIndex& rEnd, namespace { +//TODO: seems to be not/wrongly used struct TempBigPtrEntry : public BigPtrEntry { TempBigPtrEntry() {} diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index 423bbb721d7b..8acdf61be075 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -338,6 +338,7 @@ static uno::Any lcl_GetSpecialProperty(SwFrmFmt* pFmt, const SfxItemPropertySimp * @param [IN,OUT] rColumn (0-based) * @param [IN,OUT] rRow (0-based) */ +//TODO: potential for throwing proper exceptions instead of having every caller to check for errors void sw_GetCellPosition( const String &rCellName, sal_Int32 &rColumn, sal_Int32 &rRow) { @@ -918,6 +919,7 @@ OUString SwXCell::getFormula(void) throw( uno::RuntimeException ) return sRet; } +///@see sw_setValue (TODO: seems to be C&P programming here) void SwXCell::setFormula(const OUString& rFormula) throw( uno::RuntimeException ) { SolarMutexGuard aGuard; @@ -4382,6 +4384,7 @@ void SwXCellRange::setData(const uno::Sequence< uno::Sequence< double > >& rData } } +///@see SwXTextTable::getRowDescriptions (TODO: seems to be C&P programming here) uno::Sequence< OUString > SwXCellRange::getRowDescriptions(void) throw( uno::RuntimeException ) { @@ -4422,6 +4425,7 @@ uno::Sequence< OUString > SwXCellRange::getRowDescriptions(void) return aRet; } +///@see SwXTextTable::setRowDescriptions (TODO: seems to be C&P programming here) void SwXCellRange::setRowDescriptions(const uno::Sequence< OUString >& rRowDesc) throw( uno::RuntimeException ) { @@ -4456,6 +4460,7 @@ void SwXCellRange::setRowDescriptions(const uno::Sequence< OUString >& rRowDesc) } } +///@see SwXTextTable::setColumnDescriptions (TODO: seems to be C&P programming here) uno::Sequence< OUString > SwXCellRange::getColumnDescriptions(void) throw( uno::RuntimeException ) { @@ -4496,6 +4501,7 @@ uno::Sequence< OUString > SwXCellRange::getColumnDescriptions(void) return aRet; } +///@see SwXTextTable::setColumnDescriptions (TODO: seems to be C&P programming here) void SwXCellRange::setColumnDescriptions(const uno::Sequence< OUString >& ColumnDesc) throw( uno::RuntimeException ) { @@ -4664,6 +4670,7 @@ sal_Int32 SwXTableRows::getCount(void) throw( uno::RuntimeException ) return nRet; } +///@see SwXCell::CreateXCell (TODO: seems to be C&P programming here) uno::Any SwXTableRows::getByIndex(sal_Int32 nIndex) throw( lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException ) { @@ -4924,6 +4931,7 @@ sal_Bool SwXTableColumns::hasElements(void) throw( uno::RuntimeException ) return sal_True; } +///@see SwXTableRows::insertByIndex (TODO: seems to be C&P programming here) void SwXTableColumns::insertByIndex(sal_Int32 nIndex, sal_Int32 nCount) throw( uno::RuntimeException ) { SolarMutexGuard aGuard; @@ -4977,6 +4985,7 @@ void SwXTableColumns::insertByIndex(sal_Int32 nIndex, sal_Int32 nCount) throw( u } } +///@see SwXTableRows::removeByIndex (TODO: seems to be C&P programming here) void SwXTableColumns::removeByIndex(sal_Int32 nIndex, sal_Int32 nCount) throw( uno::RuntimeException ) { SolarMutexGuard aGuard; |