Kaydet (Commit) c8d8bcf3 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update unused code

Change-Id: Iee19af81c648cb82074d8cabc13716b0d38c7ff6
üst 5a37986b
......@@ -1271,29 +1271,6 @@ FilterCache::EItemFlushState FilterCache::impl_specifyFlushOperation(const css::
return eState;
}
void FilterCache::impl_resolveItem4TypeRegistration( CacheItemList* pList,
const OUString& sItem,
const OUString& sType)
throw(css::uno::Exception)
{
CacheItem& rItem = (*pList)[sItem];
// In case it's a new created entry (automatically done by the boost::unordered_map index operator!)
// we must be sure, that this entry has its own name as property available.
// Its needed later at our container interface!
rItem[PROPNAME_NAME] <<= sItem;
OUStringList lTypeRegs(rItem[PROPNAME_TYPES]);
if (::std::find(lTypeRegs.begin(), lTypeRegs.end(), sType) == lTypeRegs.end())
{
lTypeRegs.push_back(sType);
rItem[PROPNAME_TYPES] <<= lTypeRegs.getAsConstList();
}
}
void FilterCache::impl_load(EFillState eRequiredState)
throw(css::uno::Exception)
{
......
......@@ -732,41 +732,6 @@ class FilterCache : public BaseLock
void impl_validateAndOptimize()
throw(css::uno::Exception);
/** @short register the specified item for the given type.
@descr Because detect services, frame loader or content handler
are not listed inside the xml configuration as separated
items (they are properties of any type entry!), this method update
the internal lists of such items. Thats necessary to have
it accessible for our container interfaces of detect, frame loader
and content handler services.
@param pList
points to a CacheItemList of this filter cache, where
this item registration should be updated or added.
@param sItem
specify the detect service, frame loader or content handler,
which should be registered for the given type.
@param sType
contains the internal type name, where the item should be registered for.
@throw [css::uno::Exception]
If registration failed by any reason.
That does not include double registrations!
*/
static
void impl_resolveItem4TypeRegistration( CacheItemList* pList,
const OUString& sItem,
const OUString& sType)
throw(css::uno::Exception);
// static helper
private:
......
......@@ -40,7 +40,6 @@ private:
public:
TabDialog( Window* pParent,
WinBits nStyle = WB_STDTABDIALOG );
TabDialog( Window* pParent, const ResId& rResId );
TabDialog( Window* pParent, const OString& rID, const OUString& rUIXMLDescription );
virtual ~TabDialog();
......
......@@ -14,9 +14,11 @@ MenuBar::AddMenuBarButton(Image const&, Link const&, rtl::OUString const&, unsig
MenuBar::GetMenuBarButtonRectPixel(unsigned short)
MenuBar::RemoveMenuBarButton(unsigned short)
MenuBar::SetMenuBarButtonHighlightHdl(unsigned short, Link const&)
MetaAction::TypeName(unsigned short)
MetafileXmlDump::filterNoneActionTypes()
OpenGLContext::renderToFile()
OpenGLRender::CreateTextTexture(rtl::OUString const&, Font, long, com::sun::star::awt::Point, com::sun::star::awt::Size, long)
OpenGLRender::GetAsBitmap()
OutputDevice::GetCanvas() const
OutputDevice::HasAlpha()
OutputDevice::LogicToLogic(basegfx::B2DPolyPolygon const&, MapMode const&, MapMode const&)
......@@ -30,7 +32,6 @@ RenderPrimitive::copyVertexBufferData(char const*, unsigned int)
SalGraphics::drawTransformedBitmap(basegfx::B2DPoint const&, basegfx::B2DPoint const&, basegfx::B2DPoint const&, SalBitmap const&, SalBitmap const*)
ScDocument::AreaBroadcastInRange(ScRange const&, ScHint const&)
ScDocument::CreateFormatTable() const
ScExtIButton::GetSelected() const
ScFormulaCellGroup::scheduleCompilation()
ScRawToken::Clone() const
ScRawToken::Delete()
......@@ -53,9 +54,10 @@ StyleSettings::SetUseFlatBorders(bool)
StyleSettings::SetUseFlatMenus(bool)
SvpSalInstance::PostedEventsInQueue()
SvtListener::IsListening(SvtBroadcaster&) const
SvxDummyShapeContainer::SvxDummyShapeContainer(com::sun::star::uno::Reference<com::sun::star::drawing::XShapes>)
SvxFontListBox::GetSelectEntry() const
SvxNumberFormatShell::IsAdded_Impl(unsigned long)
SvxOpenGLObject::getRenderer()
SvxOpenGLObject::setRenderer(IOpenGLRenderer*)
TextDoc::IsValidPaM(TextPaM const&)
Texture::setSamplerParameter(unsigned int, unsigned int)
UnoApiTest::closeDocument(com::sun::star::uno::Reference<com::sun::star::lang::XComponent>)
......
......@@ -213,14 +213,6 @@ TabDialog::TabDialog( Window* pParent, WinBits nStyle ) :
ImplInit( pParent, nStyle );
}
TabDialog::TabDialog( Window* pParent, const ResId& rResId ) :
Dialog( WINDOW_TABDIALOG )
{
ImplInitTabDialogData();
rResId.SetRT( RSC_TABDIALOG );
init(pParent, rResId);
}
TabDialog::TabDialog( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ) :
Dialog(pParent, rID, rUIXMLDescription, WINDOW_TABDIALOG)
{
......
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