diff options
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/classes/checkediterator.hxx | 46 | ||||
-rw-r--r-- | framework/inc/uielement/menubarmerger.hxx | 1 |
2 files changed, 0 insertions, 47 deletions
diff --git a/framework/inc/classes/checkediterator.hxx b/framework/inc/classes/checkediterator.hxx index 6e82ed70d05d..ff5f07e1a467 100644 --- a/framework/inc/classes/checkediterator.hxx +++ b/framework/inc/classes/checkediterator.hxx @@ -140,8 +140,6 @@ class CheckedIterator If you step to next element again; we set it to E_AFTEREND. So you have a chance to differ between "exact end" and "after end"! - @seealso method isEnd() - @seealso method isAfterEnd() @return A reference to our changed object himself. *//*-*****************************************************************************************************/ @@ -171,50 +169,6 @@ class CheckedIterator } /*-**************************************************************************************************** - @short return true if internal iterator was not initialized before - @descr These will be true, if use start a new search by using these iterator mechanism! - - @seealso class FilterCache - @return True if internalk state E_UNKNOWN - false otherwise. - *//*-*****************************************************************************************************/ - - inline bool isUninitialized() - { - return( m_eEndState == E_UNKNOWN ); - } - - /*-**************************************************************************************************** - @short return true if internal iterator reached end of container - @descr These will be true if you step to the end of internal container. - - @seealso method isAfterEnd() - @return True if end reached; false otherwise. - *//*-*****************************************************************************************************/ - - inline bool isEnd() - { - // Is true if one end state is set! - return ( - ( m_eEndState == E_END ) || - ( m_eEndState == E_AFTEREND ) - ); - } - - /*-**************************************************************************************************** - @short return true if you call operator++ again and end already reached - @descr These indicate, that end already reached but you call operator++ again and again! - - @seealso method isEnd() - @return True if end multiple reached; false otherwise. - *//*-*****************************************************************************************************/ - - inline bool isAfterEnd() - { - // Is true only, if special end state is set! - return( m_eEndState == E_AFTEREND ); - } - - /*-**************************************************************************************************** @short support readonly access to container entry @descr Use it to get the value of current container item. @return A reference to value of container entry. diff --git a/framework/inc/uielement/menubarmerger.hxx b/framework/inc/uielement/menubarmerger.hxx index c42d48eecbca..3006fea468bd 100644 --- a/framework/inc/uielement/menubarmerger.hxx +++ b/framework/inc/uielement/menubarmerger.hxx @@ -84,7 +84,6 @@ namespace MenuBarMerger const ::std::vector< OUString >& rReferencePath, const OUString& rModuleIdentifier, const AddonMenuContainer& rAddonMenuItems ); - bool ProcessFallbackOperation(); bool MergeMenuItems( Menu* pMenu, sal_uInt16 nPos, sal_uInt16 nModIndex, |