summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/config/cache/filtercache.cxx23
-rw-r--r--filter/source/config/cache/filtercache.hxx35
-rw-r--r--include/vcl/tabdlg.hxx1
-rw-r--r--unusedcode.easy6
-rw-r--r--vcl/source/window/tabdlg.cxx8
5 files changed, 4 insertions, 69 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index e9ac3ed81950..f3f5321aedaf 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -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)
{
diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx
index 33efef10afd1..d4051619b9dd 100644
--- a/filter/source/config/cache/filtercache.hxx
+++ b/filter/source/config/cache/filtercache.hxx
@@ -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:
diff --git a/include/vcl/tabdlg.hxx b/include/vcl/tabdlg.hxx
index c288a67e6eeb..a990b8e46a24 100644
--- a/include/vcl/tabdlg.hxx
+++ b/include/vcl/tabdlg.hxx
@@ -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();
diff --git a/unusedcode.easy b/unusedcode.easy
index b9bb9885c383..91a5f4b042ee 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -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>)
diff --git a/vcl/source/window/tabdlg.cxx b/vcl/source/window/tabdlg.cxx
index 68bfa0d6beba..3c36eaeac288 100644
--- a/vcl/source/window/tabdlg.cxx
+++ b/vcl/source/window/tabdlg.cxx
@@ -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)
{