summaryrefslogtreecommitdiff
path: root/extensions/test
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 11:48:44 +0200
committerNoel Grandin <noel@peralex.com>2015-10-01 12:18:24 +0200
commitf1de3e14df9665ce48d676ac6f3439506d2b81f2 (patch)
tree26ad43f511ec7d09bdf906c376fb468c22947d31 /extensions/test
parent10e59aee74ede837ad0560e261b0f106371ce96a (diff)
com::sun::star->css in extensions/
Change-Id: I64af9f5ae444e1f7bc6c0e8c29df383a9531dba9
Diffstat (limited to 'extensions/test')
-rw-r--r--extensions/test/ole/DCOM/scriptComponents/WriterDemo.wsc4
-rw-r--r--extensions/test/ole/cpnt/cpnt.cxx12
2 files changed, 8 insertions, 8 deletions
diff --git a/extensions/test/ole/DCOM/scriptComponents/WriterDemo.wsc b/extensions/test/ole/DCOM/scriptComponents/WriterDemo.wsc
index bb331779397e..51419022f183 100644
--- a/extensions/test/ole/DCOM/scriptComponents/WriterDemo.wsc
+++ b/extensions/test/ole/DCOM/scriptComponents/WriterDemo.wsc
@@ -115,7 +115,7 @@ objCursor.setPropertyValue( "CharColor", 255);
objCursor.setPropertyValue( "CharShadowed", true);
//Create a paragraph break
-//The second argument is a com::sun::star::text::ControlCharacter::PARAGRAPH_BREAK constant
+//The second argument is a css::text::ControlCharacter::PARAGRAPH_BREAK constant
objText.insertControlCharacter( objCursor, 0 , false);
//Inserting colored Text.
@@ -152,7 +152,7 @@ objFrameText.insertString(objFrameTextCursor,
"With this second line the height of the frame raises.", false );
//Create a paragraph break
-//The second argument is a com::sun::star::text::ControlCharacter::PARAGRAPH_BREAK constant
+//The second argument is a css::text::ControlCharacter::PARAGRAPH_BREAK constant
objFrameText.insertControlCharacter( objCursor, 0 , false);
//Change the CharColor and add a Shadow
diff --git a/extensions/test/ole/cpnt/cpnt.cxx b/extensions/test/ole/cpnt/cpnt.cxx
index 7cf7e0b9ea57..26852ce4993c 100644
--- a/extensions/test/ole/cpnt/cpnt.cxx
+++ b/extensions/test/ole/cpnt/cpnt.cxx
@@ -294,8 +294,8 @@ public: // XTestSequence
virtual void SAL_CALL testInterface( const Reference< XCallback >& xCallback, sal_Int32 mode ) throw(RuntimeException);
virtual void SAL_CALL testInterface2( const Reference< XSimple >& xSimple, sal_Int32 mode ) throw(RuntimeException);
// XSimple --------------------------------------------------------------------------
- void SAL_CALL func( const OUString &message) throw(::com::sun::star::uno::RuntimeException);
- OUString SAL_CALL getName() throw(::com::sun::star::uno::RuntimeException);
+ void SAL_CALL func( const OUString &message) throw(css::uno::RuntimeException);
+ OUString SAL_CALL getName() throw(css::uno::RuntimeException);
// XIdentity
virtual void SAL_CALL setObject( const Reference< XInterface >& val ) throw (RuntimeException);
@@ -308,7 +308,7 @@ class EventListener: public WeakImplHelper<XEventListener>
public:
EventListener(): bCalled( sal_False)
{}
- virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (RuntimeException);
+ virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) throw (RuntimeException);
sal_Bool bCalled;
};
@@ -1920,20 +1920,20 @@ Reference< XInterface > SAL_CALL OComponent::getThis( ) throw (RuntimeException
return ret;
}
-void SAL_CALL EventListener::disposing( const ::com::sun::star::lang::EventObject& ) throw (RuntimeException)
+void SAL_CALL EventListener::disposing( const css::lang::EventObject& ) throw (RuntimeException)
{
bCalled= sal_True;
}
// XSimple --------------------------------------------------------------------------
-void SAL_CALL OComponent::func( const OUString &message)throw(::com::sun::star::uno::RuntimeException)
+void SAL_CALL OComponent::func( const OUString &message)throw(css::uno::RuntimeException)
{
USES_CONVERSION;
MessageBox( NULL, W2T( message.getStr()), _T("OleTest: XSimple::func"), MB_OK);
}
// XSimple --------------------------------------------------------------------------
-OUString SAL_CALL OComponent::getName()throw(::com::sun::star::uno::RuntimeException)
+OUString SAL_CALL OComponent::getName()throw(css::uno::RuntimeException)
{
return L"XSimple";
}