Kaydet (Commit) 00445037 authored tarafından Santiago Martinez's avatar Santiago Martinez Kaydeden (comit) Caolán McNamara

Remove unused code.

üst f96a392d
......@@ -626,33 +626,6 @@ bool EquidistantTickIter::gotoNext()
return true;
}
bool EquidistantTickIter::gotoIndex( sal_Int32 nTickIndex )
{
if( nTickIndex < 0 )
return false;
if( nTickIndex >= m_nTickCount )
return false;
if( nTickIndex < m_nCurrentPos )
if( !gotoFirst() )
return false;
while( nTickIndex > m_nCurrentPos )
if( !gotoNext() )
return false;
return true;
}
sal_Int32 EquidistantTickIter::getCurrentIndex() const
{
return m_nCurrentPos;
}
sal_Int32 EquidistantTickIter::getMaxIndex() const
{
return m_nTickCount-1;
}
double* EquidistantTickIter::nextValue()
{
if( gotoNext() )
......
......@@ -60,11 +60,6 @@ public:
sal_Int32 getCurrentDepth() const { return m_nCurrentDepth; }
protected:
bool gotoIndex( sal_Int32 nTickIndex );
sal_Int32 getCurrentIndex() const;
sal_Int32 getMaxIndex() const;
private: //methods
sal_Int32 getIntervalCount( sal_Int32 nDepth );
bool isAtLastPartTick();
......
......@@ -1228,9 +1228,6 @@ canvas::tools::mergeViewAndRenderState(com::sun::star::rendering::ViewState&, co
canvas::tools::prependToViewState(com::sun::star::rendering::ViewState&, basegfx::B2DHomMatrix const&)
canvas::tools::verifyInput(com::sun::star::geometry::RealSize2D const&, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XInterface> const&, short)
canvas::tools::verifyInput(com::sun::star::rendering::FloatingPointBitmapLayout const&, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XInterface> const&, short)
chart::EquidistantTickIter::getCurrentIndex() const
chart::EquidistantTickIter::getMaxIndex() const
chart::EquidistantTickIter::gotoIndex(int)
cmis::Content::exchangeIdentity(com::sun::star::uno::Reference<com::sun::star::ucb::XContentIdentifier> const&)
cmis::Content::queryChildren(std::__debug::list<rtl::Reference<cmis::Content>, std::allocator<rtl::Reference<cmis::Content> > >&)
comphelper::AccessibleEventNotifier::getEventListeners(unsigned int)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment