summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-11-23 02:37:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-11-23 08:46:41 +0000
commitb5a89ad137d0750b65f0820ebc9fa4e13a84067b (patch)
tree0a812171bb0d4c8976e7e0349b204b37549eeacb /editeng
parentdd66b3f847f0061dcd9822104bbe6f45afbada63 (diff)
callcatcher: update list
.ui conversion has finally make inroads into core vcl widgets, no WorkWindow are initialized from ResIds anymore post conversion of the xslt filter dialog Change-Id: I4a1764d9fb9be9e252630e3afc9972221bc16be6
Diffstat (limited to 'editeng')
-rw-r--r--editeng/inc/editeng/unotext.hxx3
-rw-r--r--editeng/source/uno/unotext.cxx9
2 files changed, 2 insertions, 10 deletions
diff --git a/editeng/inc/editeng/unotext.hxx b/editeng/inc/editeng/unotext.hxx
index 39b63f1b4a0c..397e64bbf090 100644
--- a/editeng/inc/editeng/unotext.hxx
+++ b/editeng/inc/editeng/unotext.hxx
@@ -471,7 +471,8 @@ public:
virtual ~SvxUnoText() throw();
// Internal
- UNO3_GETIMPLEMENTATION_DECL( SvxUnoText )
+ static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
+ virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::uno::XInterface
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx
index d6ab43aad548..589b693c99c2 100644
--- a/editeng/source/uno/unotext.cxx
+++ b/editeng/source/uno/unotext.cxx
@@ -2399,15 +2399,6 @@ uno::Sequence< sal_Int8 > SAL_CALL SvxUnoText::getImplementationId( ) throw( un
return theSvxUnoTextImplementationId::get().getSeq();
}
-SvxUnoText* SvxUnoText::getImplementation( const uno::Reference< uno::XInterface >& xInt )
-{
- uno::Reference< lang::XUnoTunnel > xUT( xInt, uno::UNO_QUERY );
- if( xUT.is() )
- return reinterpret_cast<SvxUnoText*>(sal::static_int_cast<sal_uIntPtr>(xUT->getSomething( SvxUnoText::getUnoTunnelId())));
- else
- return NULL;
-}
-
namespace
{
class theSvxUnoTextUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSvxUnoTextUnoTunnelId > {};