From c97971ea3bd7e40203c926546aae1e4d0951113d Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 9 Jun 2015 13:43:29 +0200 Subject: svtools: WaE: '<::' cannot begin a template-argument list Change-Id: I25d4dbd916297fef51f24100dbde0009a4943750 --- svtools/source/uno/unoiface.cxx | 4 ++-- 1 file 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 -- cgit