diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-11-04 11:49:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-11-04 14:41:11 +0100 |
commit | 2ecce5b58b965cf69fdb98966d7e2aab09d2f030 (patch) | |
tree | 3017d382f2f4c4a766621a5718f8a6ced93eebb6 /svtools | |
parent | f07ac6d2d46cf9a86577d2622ce9b7c15887ac39 (diff) |
move VCLXFixedHyperlink creation to toolkit
Change-Id: I3aa47a194f2b10b15faaa142c7dc6d57dffff96e
Reviewed-on: https://gerrit.libreoffice.org/82002
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/unoiface.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx index 6cfd6f304905..0a1344feac92 100644 --- a/svtools/source/uno/unoiface.cxx +++ b/svtools/source/uno/unoiface.cxx @@ -19,7 +19,6 @@ #include <tools/debug.hxx> -#include <vcl/fixedhyper.hxx> #include <vcl/prgsbar.hxx> #include <vcl/svapp.hxx> #include <svl/zforlist.hxx> @@ -132,19 +131,6 @@ SAL_DLLPUBLIC_EXPORT vcl::Window* CreateWindow( VCLXWindow** ppNewComp, const cs *ppNewComp = pPeer; pWindow = pPeer->createVclControl( pParent, nWinBits ); } - else if ( aServiceName.equalsIgnoreAsciiCase( "FixedHyperlink" ) ) - { - if ( pParent ) - { - pWindow = VclPtr<FixedHyperlink>::Create( pParent, nWinBits ); - *ppNewComp = new VCLXFixedHyperlink; - } - else - { - *ppNewComp = nullptr; - return nullptr; - } - } else if ( aServiceName.equalsIgnoreAsciiCase( "Grid" ) ) { if ( pParent ) |