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

callcatcher: update unused code

Change-Id: I29b3f1408b814a1424d8bab232e9ac618901b4c2
üst a89ec4cf
...@@ -750,7 +750,6 @@ public: ...@@ -750,7 +750,6 @@ public:
virtual void ActivatePage( const SfxItemSet& rSet ) SAL_OVERRIDE; virtual void ActivatePage( const SfxItemSet& rSet ) SAL_OVERRIDE;
virtual sfxpg DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE; virtual sfxpg DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE;
XPropertyListRef GetPropertyList( XPropertyListType t );
void SetPropertyList( XPropertyListType t, const XPropertyListRef &xRef ); void SetPropertyList( XPropertyListType t, const XPropertyListRef &xRef );
void SetColorList( XColorListRef pColList ); void SetColorList( XColorListRef pColList );
......
...@@ -1225,13 +1225,5 @@ void SvxColorTabPage::SetColorList( XColorListRef pColList ) ...@@ -1225,13 +1225,5 @@ void SvxColorTabPage::SetColorList( XColorListRef pColList )
SetPropertyList( XCOLOR_LIST, XPropertyListRef( ( pColList.get() ) ) ); SetPropertyList( XCOLOR_LIST, XPropertyListRef( ( pColList.get() ) ) );
} }
XPropertyListRef SvxColorTabPage::GetPropertyList( XPropertyListType t )
{
(void) t;
OSL_ASSERT( t == XCOLOR_LIST );
return XPropertyListRef( pColorList.get() );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -396,14 +396,6 @@ void OColumnWrapper::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const ...@@ -396,14 +396,6 @@ void OColumnWrapper::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const
} }
} }
sal_Int64 SAL_CALL OColumnWrapper::getSomething( const Sequence< sal_Int8 >& aIdentifier ) throw(RuntimeException)
{
Reference< XUnoTunnel > xTunnel( m_xAggregate, UNO_QUERY);
if ( xTunnel.is() )
return xTunnel->getSomething( aIdentifier );
return 0;
}
// OTableColumnDescriptorWrapper // OTableColumnDescriptorWrapper
OTableColumnDescriptorWrapper::OTableColumnDescriptorWrapper( const Reference< XPropertySet >& _rCol, const bool _bPureWrap, const bool _bIsDescriptor ) OTableColumnDescriptorWrapper::OTableColumnDescriptorWrapper( const Reference< XPropertySet >& _rCol, const bool _bPureWrap, const bool _bIsDescriptor )
:OColumnWrapper( _rCol, !_bIsDescriptor ) :OColumnWrapper( _rCol, !_bIsDescriptor )
......
...@@ -68,61 +68,6 @@ void OCommandDefinition::registerProperties() ...@@ -68,61 +68,6 @@ void OCommandDefinition::registerProperties()
&rCommandDefinition.m_aLayoutInformation, cppu::UnoType<decltype(rCommandDefinition.m_aLayoutInformation)>::get()); &rCommandDefinition.m_aLayoutInformation, cppu::UnoType<decltype(rCommandDefinition.m_aLayoutInformation)>::get());
} }
OUString OCommandDefinition::getName() throw( ::com::sun::star::uno::RuntimeException )
{
return getDefinition().m_aProps.aTitle;
}
OUString OCommandDefinition::getCommand() throw( ::com::sun::star::uno::RuntimeException )
{
return getCommandDefinition().m_sCommand;
}
void OCommandDefinition::setCommand(const OUString& p1) throw( ::com::sun::star::uno::RuntimeException )
{
setPropertyValue(PROPERTY_COMMAND, Any(p1) );
}
bool OCommandDefinition::getEscapeProcessing() throw( ::com::sun::star::uno::RuntimeException )
{
return getCommandDefinition().m_bEscapeProcessing;
}
void OCommandDefinition::setEscapeProcessing(bool p1) throw( ::com::sun::star::uno::RuntimeException )
{
setPropertyValue(PROPERTY_ESCAPE_PROCESSING, Any(p1) );
}
OUString OCommandDefinition::getUpdateTableName() throw( ::com::sun::star::uno::RuntimeException )
{
return getCommandDefinition().m_sUpdateTableName;
}
void OCommandDefinition::setUpdateTableName(const OUString& p1) throw( ::com::sun::star::uno::RuntimeException )
{
setPropertyValue(PROPERTY_UPDATE_TABLENAME, Any(p1) );
}
OUString OCommandDefinition::getUpdateCatalogName() throw( ::com::sun::star::uno::RuntimeException )
{
return getCommandDefinition().m_sUpdateCatalogName;
}
void OCommandDefinition::setUpdateCatalogName(const OUString& p1) throw( ::com::sun::star::uno::RuntimeException )
{
setPropertyValue(PROPERTY_UPDATE_CATALOGNAME, Any(p1) );
}
OUString OCommandDefinition::getUpdateSchemaName() throw( ::com::sun::star::uno::RuntimeException )
{
return getCommandDefinition().m_sUpdateSchemaName;
}
void OCommandDefinition::setUpdateSchemaName(const OUString& p1) throw( ::com::sun::star::uno::RuntimeException )
{
setPropertyValue(PROPERTY_UPDATE_SCHEMANAME, Any(p1) );
}
OCommandDefinition::OCommandDefinition(const Reference< XComponentContext >& _xORB OCommandDefinition::OCommandDefinition(const Reference< XComponentContext >& _xORB
,const Reference< XInterface >& _rxContainer ,const Reference< XInterface >& _rxContainer
,const TContentPtr& _pImpl) ,const TContentPtr& _pImpl)
......
...@@ -124,19 +124,6 @@ public: ...@@ -124,19 +124,6 @@ public:
virtual void SAL_CALL removeEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& p1) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE virtual void SAL_CALL removeEventListener(const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener>& p1) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{ OComponentDefinition::removeEventListener(p1); } { OComponentDefinition::removeEventListener(p1); }
// XQueryDefinition properties
OUString getName() throw( ::com::sun::star::uno::RuntimeException );
OUString getCommand() throw( ::com::sun::star::uno::RuntimeException );
void setCommand(const OUString&) throw( ::com::sun::star::uno::RuntimeException );
bool getEscapeProcessing() throw( ::com::sun::star::uno::RuntimeException );
void setEscapeProcessing(bool) throw( ::com::sun::star::uno::RuntimeException );
OUString getUpdateTableName() throw( ::com::sun::star::uno::RuntimeException );
void setUpdateTableName(const OUString&) throw( ::com::sun::star::uno::RuntimeException );
OUString getUpdateCatalogName() throw( ::com::sun::star::uno::RuntimeException );
void setUpdateCatalogName(const OUString&) throw( ::com::sun::star::uno::RuntimeException );
OUString getUpdateSchemaName() throw( ::com::sun::star::uno::RuntimeException );
void setUpdateSchemaName(const OUString&) throw( ::com::sun::star::uno::RuntimeException );
// OPropertySetHelper // OPropertySetHelper
DECLARE_PROPERTYCONTAINER_DEFAULTS( ); DECLARE_PROPERTYCONTAINER_DEFAULTS( );
......
...@@ -209,8 +209,6 @@ namespace dbaccess ...@@ -209,8 +209,6 @@ namespace dbaccess
) )
throw (::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE; throw (::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE;
sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
protected: protected:
OUString impl_getPropertyNameFromHandle( const sal_Int32 _nHandle ) const; OUString impl_getPropertyNameFromHandle( const sal_Int32 _nHandle ) const;
......
...@@ -279,12 +279,6 @@ bool ODsnTypeCollection::supportsDBCreation(const OUString& _sURL) const ...@@ -279,12 +279,6 @@ bool ODsnTypeCollection::supportsDBCreation(const OUString& _sURL) const
return aFeatures.getOrDefault("SupportsDBCreation",sal_False); return aFeatures.getOrDefault("SupportsDBCreation",sal_False);
} }
bool ODsnTypeCollection::needsJVM(const OUString& _sURL) const
{
const ::comphelper::NamedValueCollection& aFeatures = m_aDriverConfig.getMetaData(_sURL);
return aFeatures.getOrDefault("UseJava",sal_False);
}
Sequence<PropertyValue> ODsnTypeCollection::getDefaultDBSettings( const OUString& _sURL ) const Sequence<PropertyValue> ODsnTypeCollection::getDefaultDBSettings( const OUString& _sURL ) const
{ {
const ::comphelper::NamedValueCollection& aProperties = m_aDriverConfig.getProperties(_sURL); const ::comphelper::NamedValueCollection& aProperties = m_aDriverConfig.getProperties(_sURL);
......
...@@ -179,8 +179,6 @@ public: ...@@ -179,8 +179,6 @@ public:
DATASOURCE_TYPE determineType(const OUString& _rDsn) const; DATASOURCE_TYPE determineType(const OUString& _rDsn) const;
bool needsJVM(const OUString& _rDsn) const;
sal_Int32 getIndexOf(const OUString& _sURL) const; sal_Int32 getIndexOf(const OUString& _sURL) const;
sal_Int32 size() const; sal_Int32 size() const;
OUString getType(const OUString& _sURL) const; OUString getType(const OUString& _sURL) const;
......
...@@ -138,18 +138,6 @@ namespace dbaui ...@@ -138,18 +138,6 @@ namespace dbaui
m_pTablesList->notifyHiContrastChanged(); m_pTablesList->notifyHiContrastChanged();
} }
} }
void OTableSubscriptionPage::resizeControls(const Size& _rDiff)
{
if ( _rDiff.Height() )
{
Size aOldSize = m_pTablesList->GetSizePixel();
aOldSize.Height() -= _rDiff.Height();
m_pTablesList->SetPosSizePixel(
m_pTablesList->GetPosPixel()+Point(0,_rDiff.Height()),
aOldSize
);
}
}
void OTableSubscriptionPage::implCheckTables(const Sequence< OUString >& _rTables) void OTableSubscriptionPage::implCheckTables(const Sequence< OUString >& _rTables)
{ {
// the meta data for the current connection, used for splitting up table names // the meta data for the current connection, used for splitting up table names
......
...@@ -56,10 +56,6 @@ namespace dbaui ...@@ -56,10 +56,6 @@ namespace dbaui
virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE; virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
/** will be called when the controls need to be resized.
*/
void resizeControls(const Size& _rDiff);
OTableSubscriptionPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs ,OTableSubscriptionDialog* _pTablesDlg); OTableSubscriptionPage( vcl::Window* pParent, const SfxItemSet& _rCoreAttrs ,OTableSubscriptionDialog* _pTablesDlg);
virtual ~OTableSubscriptionPage(); virtual ~OTableSubscriptionPage();
virtual void dispose() SAL_OVERRIDE; virtual void dispose() SAL_OVERRIDE;
......
BigInt::BigInt(unsigned int) BigInt::BigInt(unsigned int)
BitmapFilterStackBlur::filter(BitmapEx&) BitmapFilterStackBlur::filter(BitmapEx&)
FontCharMap::GetDefaultMap(bool) FontCharMap::GetDefaultMap(bool)
GenericSalLayout::GetTextRect() const
NotifyEvent::NotifyEvent() NotifyEvent::NotifyEvent()
OpenGLContext::init(_XDisplay*, unsigned long, unsigned int, unsigned int, int) OpenGLContext::init(_XDisplay*, unsigned long, unsigned int, unsigned int, int)
OpenGLContext::renderToFile() OpenGLContext::renderToFile()
...@@ -47,7 +48,8 @@ SvpSalFrame::enableDamageTracker(bool) ...@@ -47,7 +48,8 @@ SvpSalFrame::enableDamageTracker(bool)
SvpSalInstance::PostedEventsInQueue() SvpSalInstance::PostedEventsInQueue()
SvtAccessibilityOptions::IsModified() const SvtAccessibilityOptions::IsModified() const
SvtListener::IsListening(SvtBroadcaster&) const SvtListener::IsListening(SvtBroadcaster&) const
SvxColorTabPage::GetPropertyList(XPropertyListType) SwUnoTableCrsr::Clone() const
SwXParaFrameEnumerationImpl::PurgeFrameClients()::{lambda(std::shared_ptr<sw::FrameClient>&)#1}::_FUN(std::shared_ptr<sw::FrameClient>&)
Test::testCopyPasteSkipEmptyConditionalFormatting() Test::testCopyPasteSkipEmptyConditionalFormatting()
Test::testPerf() Test::testPerf()
Test::testSharedFormulaMoveBlock() Test::testSharedFormulaMoveBlock()
...@@ -100,6 +102,7 @@ vcl::IsWindowSystemAvailable() ...@@ -100,6 +102,7 @@ vcl::IsWindowSystemAvailable()
vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool) vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
vcl::Region::IsInside(Rectangle const&) const vcl::Region::IsInside(Rectangle const&) const
vcl::RenderSettings::PushAndApply(OutputDevice&) vcl::RenderSettings::PushAndApply(OutputDevice&)
vcl::Window::DrawGradientWallpaper(OutputDevice&, long, long, long, long, Wallpaper const&)
vcl::Window::DrawSelectionBackground(Rectangle const&, unsigned short, bool, bool, bool, Color*) vcl::Window::DrawSelectionBackground(Rectangle const&, unsigned short, bool, bool, bool, Color*)
vcl::Window::GetRenderSettings() vcl::Window::GetRenderSettings()
vcl::Window::SetDoubleBuffering(bool) vcl::Window::SetDoubleBuffering(bool)
...@@ -108,3 +111,4 @@ vclcanvas::CanvasBitmapHelper::setPixel(com::sun::star::uno::Sequence<signed cha ...@@ -108,3 +111,4 @@ vclcanvas::CanvasBitmapHelper::setPixel(com::sun::star::uno::Sequence<signed cha
vclcanvas::CanvasHelper::drawPoint(com::sun::star::rendering::XCanvas const*, com::sun::star::geometry::RealPoint2D const&, com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&) vclcanvas::CanvasHelper::drawPoint(com::sun::star::rendering::XCanvas const*, com::sun::star::geometry::RealPoint2D const&, com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&)
vclcanvas::CanvasHelper::setData(com::sun::star::uno::Sequence<signed char> const&, com::sun::star::rendering::IntegerBitmapLayout const&, com::sun::star::geometry::IntegerRectangle2D const&) vclcanvas::CanvasHelper::setData(com::sun::star::uno::Sequence<signed char> const&, com::sun::star::rendering::IntegerBitmapLayout const&, com::sun::star::geometry::IntegerRectangle2D const&)
vclcanvas::CanvasHelper::setPixel(com::sun::star::uno::Sequence<signed char> const&, com::sun::star::rendering::IntegerBitmapLayout const&, com::sun::star::geometry::IntegerPoint2D const&) vclcanvas::CanvasHelper::setPixel(com::sun::star::uno::Sequence<signed char> const&, com::sun::star::rendering::IntegerBitmapLayout const&, com::sun::star::geometry::IntegerPoint2D const&)
ww8::WW8TableNodeInfo::isEndOfLine() const
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