summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-29 12:40:47 +0200
committerNoel Grandin <noel@peralex.com>2015-09-29 15:08:43 +0200
commit34180700b2686c97cdce0b52ca9578a41a153035 (patch)
tree073f3753e4483f30efa3c7c769f23971e6a046d5 /framework
parente710170d906fcb248a5e4ff5a3a90cbf0e20003d (diff)
loplugin:removeunusedmethods, remove unused stuff
Change-Id: I35456b2a3ad2a84a1d045f09cdfb29e4c19b8350
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/classes/checkediterator.hxx46
-rw-r--r--framework/inc/uielement/menubarmerger.hxx1
-rw-r--r--framework/source/layoutmanager/helpers.hxx1
3 files changed, 0 insertions, 48 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,
diff --git a/framework/source/layoutmanager/helpers.hxx b/framework/source/layoutmanager/helpers.hxx
index 9d66e4b4f919..dbb017661176 100644
--- a/framework/source/layoutmanager/helpers.hxx
+++ b/framework/source/layoutmanager/helpers.hxx
@@ -69,7 +69,6 @@ bool implts_isPreviewModel( const ::com::sun::star::uno::Reference< ::com::sun::
bool implts_isFrameOrWindowTop( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame );
void impl_setDockingWindowVisibility( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& rxContext, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rFrame, const OUString& rDockingWindowName, bool bVisible );
void impl_addWindowListeners( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& xThis, const ::com::sun::star::uno::Reference< css::ui::XUIElement >& xUIElement );
-::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > implts_createToolkitWindow( const css::uno::Reference< ::com::sun::star::awt::XToolkit2 >& rToolkit, const css::uno::Reference< ::com::sun::star::awt::XWindowPeer >& rParent );
}