diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-20 09:21:24 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-20 09:39:36 +0000 |
commit | b4ee16da65eab7b50b29dcd42dc0f0be6b97b174 (patch) | |
tree | 81e7d930894f13718f9a36772e55034d660e0cc1 /basic/qa | |
parent | c02e79874951ba86d926186e284612806d8bc0a3 (diff) |
com::sun::star->css in basic
Change-Id: I637fd7aedeb97b7dca22521474a54a1d4274f212
Reviewed-on: https://gerrit.libreoffice.org/17206
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/qa')
-rw-r--r-- | basic/qa/cppunit/basictest.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/qa/cppunit/basictest.hxx b/basic/qa/cppunit/basictest.hxx index 1b9c6341cd7f..49bbb2973f15 100644 --- a/basic/qa/cppunit/basictest.hxx +++ b/basic/qa/cppunit/basictest.hxx @@ -88,7 +88,7 @@ class MacroSnippet MakeModule( sSource ); } - SbxVariableRef Run( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& rArgs ) + SbxVariableRef Run( const css::uno::Sequence< css::uno::Any >& rArgs ) { SbxVariableRef pReturn = NULL; if ( !Compile() ) @@ -114,7 +114,7 @@ class MacroSnippet SbxVariableRef Run() { - ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > aArgs; + css::uno::Sequence< css::uno::Any > aArgs; return Run( aArgs ); } |