summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbawindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbawindow.cxx')
-rw-r--r--sw/source/ui/vba/vbawindow.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/vba/vbawindow.cxx b/sw/source/ui/vba/vbawindow.cxx
index b8a22620c08e..611299a19c05 100644
--- a/sw/source/ui/vba/vbawindow.cxx
+++ b/sw/source/ui/vba/vbawindow.cxx
@@ -108,7 +108,7 @@ SwVbaWindow::setWindowState( const uno::Any& _windowstate ) throw (uno::RuntimeE
else if (nwindowState == word::WdWindowState::wdWindowStateNormal)
pWork -> Restore();
else
- throw uno::RuntimeException( rtl::OUString( "Invalid Parameter" ), uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( OUString( "Invalid Parameter" ), uno::Reference< uno::XInterface >() );
}
}
@@ -128,20 +128,20 @@ SwVbaWindow::ActivePane() throw (uno::RuntimeException)
return uno::makeAny( uno::Reference< word::XPane >( new SwVbaPane( this, mxContext, m_xModel ) ) );
}
-rtl::OUString
+OUString
SwVbaWindow::getServiceImplName()
{
- return rtl::OUString("SwVbaWindow");
+ return OUString("SwVbaWindow");
}
-uno::Sequence< rtl::OUString >
+uno::Sequence< OUString >
SwVbaWindow::getServiceNames()
{
- static uno::Sequence< rtl::OUString > aServiceNames;
+ static uno::Sequence< OUString > aServiceNames;
if ( aServiceNames.getLength() == 0 )
{
aServiceNames.realloc( 1 );
- aServiceNames[ 0 ] = rtl::OUString("ooo.vba.word.Window" );
+ aServiceNames[ 0 ] = OUString("ooo.vba.word.Window" );
}
return aServiceNames;
}