[Libreoffice-commits] core.git: svtools/source
Miklos Vajna
vmiklos at collabora.co.uk
Tue Jun 9 04:44:31 PDT 2015
svtools/source/uno/unoiface.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit c97971ea3bd7e40203c926546aae1e4d0951113d
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Tue Jun 9 13:43:29 2015 +0200
svtools: WaE: '<::' cannot begin a template-argument list
Change-Id: I25d4dbd916297fef51f24100dbde0009a4943750
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index 31b26ce..582ecbe 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
More information about the Libreoffice-commits
mailing list