summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2015-06-07 00:05:08 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2015-06-07 00:10:40 +0200
commitf8f605d7f726909b39ed955e199609ae69111671 (patch)
tree7dc389fb8e3dc9648a90bd21af9af7a17a46010b /svtools
parent4ce537563a763f8822928e8140e639a554fbd7d3 (diff)
gcc4.6: remove trigraph sequences '<::'
Change-Id: Iaea3121fbc4e826b5d1f76b052c21b4dcf18df70
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/unoiface.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index 55d0a483ca0d..43a6ad6992a1 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