diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-09 13:43:29 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-09 13:43:50 +0200 |
commit | c97971ea3bd7e40203c926546aae1e4d0951113d (patch) | |
tree | 0008d0edc3818138558a99bf3590235796f5a6db /svtools | |
parent | a0ff85afd767e6b4649824a9139875b6322d3a15 (diff) |
svtools: WaE: '<::' cannot begin a template-argument list
Change-Id: I25d4dbd916297fef51f24100dbde0009a4943750
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/unoiface.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx index 31b26ce5ba60..582ecbe66cf3 100644 --- a/svtools/source/uno/unoiface.cxx +++ b/svtools/source/uno/unoiface.cxx @@ -118,7 +118,7 @@ SAL_DLLPUBLIC_EXPORT vcl::Window* CreateWindow( VCLXWindow** ppNewComp, const :: } else if (aServiceName.equalsIgnoreAsciiCase("roadmap") ) { - pWindow = VclPtr<::svt::ORoadmap>::Create( pParent, WB_TABSTOP ); + pWindow = VclPtr< ::svt::ORoadmap>::Create( pParent, WB_TABSTOP ); *ppNewComp = new SVTXRoadmap; } else if ( aServiceName.equalsIgnoreAsciiCase( "ProgressBar" ) ) @@ -157,7 +157,7 @@ SAL_DLLPUBLIC_EXPORT vcl::Window* CreateWindow( VCLXWindow** ppNewComp, const :: { if ( pParent ) { - pWindow = VclPtr<::svt::table::TableControl>::Create(pParent, nWinBits); + pWindow = VclPtr< ::svt::table::TableControl>::Create(pParent, nWinBits); *ppNewComp = new SVTXGridControl; } else |