Kaydet (Commit) f762dad2 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

fdo#46374 replace stardiv in comments where applicable

Change-Id: Icd07fba84735325408741ad10864c63ea32a6481
üst be62c012
...@@ -367,7 +367,6 @@ void SAL_CALL BaseControl::createPeer( const Reference< XToolkit >& xToo ...@@ -367,7 +367,6 @@ void SAL_CALL BaseControl::createPeer( const Reference< XToolkit >& xToo
addWindowListener( this ); addWindowListener( this );
} }
// PosSize_POSSIZE defined in <stardiv/uno/awt/window.hxx>
m_xPeerWindow->setPosSize( m_nX, m_nY, m_nWidth, m_nHeight, PosSize::POSSIZE ); m_xPeerWindow->setPosSize( m_nX, m_nY, m_nWidth, m_nHeight, PosSize::POSSIZE );
m_xPeerWindow->setEnable( m_bEnable ); m_xPeerWindow->setEnable( m_bEnable );
m_xPeerWindow->setVisible( m_bVisible && !m_bInDesignMode ); m_xPeerWindow->setVisible( m_bVisible && !m_bInDesignMode );
...@@ -461,7 +460,6 @@ void SAL_CALL BaseControl::setPosSize( sal_Int32 nX , ...@@ -461,7 +460,6 @@ void SAL_CALL BaseControl::setPosSize( sal_Int32 nX ,
sal_Int16 nFlags ) throw( RuntimeException ) sal_Int16 nFlags ) throw( RuntimeException )
{ {
// - change size and position of window and save the values // - change size and position of window and save the values
// - "nFlags" declared in <stardiv/uno/awt/window.hxx> ("#define PosSize_X .....")
// Ready for multithreading // Ready for multithreading
MutexGuard aGuard( m_aMutex ); MutexGuard aGuard( m_aMutex );
......
...@@ -24,14 +24,11 @@ ...@@ -24,14 +24,11 @@
#include <smart/com/sun/star/io/XActiveDataSource.hxx> #include <smart/com/sun/star/io/XActiveDataSource.hxx>
#include <smart/com/sun/star/io/XConnectable.hxx> #include <smart/com/sun/star/io/XConnectable.hxx>
#include <smart/com/sun/star/io/XMarkableStream.hxx> #include <smart/com/sun/star/io/XMarkableStream.hxx>
#include <smart/com/sun/star/lang/XServiceInfo.hxx> #include <smart/com/sun/star/lang/XServiceInfo.hxx>
#include <smart/com/sun/star/beans/XPropertySet.hxx> #include <smart/com/sun/star/beans/XPropertySet.hxx>
#include <usr/services.hxx> #include <usr/services.hxx>
#include <usr/factoryhlp.hxx> #include <usr/factoryhlp.hxx>
#include <usr/reflserv.hxx> // for EXTERN_SERVICE_CALLTYPE #include <usr/reflserv.hxx> // for EXTERN_SERVICE_CALLTYPE
#include <usr/weak.hxx> // OWeakObject #include <usr/weak.hxx> // OWeakObject
...@@ -47,14 +44,12 @@ using namespace usr; ...@@ -47,14 +44,12 @@ using namespace usr;
#define DATASTREAM_TEST_MAX_HANDLE 1 #define DATASTREAM_TEST_MAX_HANDLE 1
/**** /*
* The following test class tests XDataInputStream and XDataOutputStream at equal terms, * The following test class tests XDataInputStream and XDataOutputStream at equal terms,
* so when errors occur, it may be in either one implementation. * so when errors occur, it may be in either one implementation.
* The class also uses stardiv.uno.io.pipe. If problems occur, make sure to run also the * The class also uses com.sun.star.io.Pipe. If problems occur, make sure to run also the
* pipe test routines ( test.com.sun.star.io.pipe ). * pipe test routines ( test.com.sun.star.io.Pipe ).
* */
*
*****/
class ODataStreamTest : class ODataStreamTest :
public XSimpleTest, public XSimpleTest,
......
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
//------------------------------------------------------ //------------------------------------------------------
// testcomponent - Loads a service and its testcomponent from dlls performs a test. // testcomponent - Loads a service and its testcomponent from dlls performs a test.
// Expands the dll-names depending on the actual environment. // Expands the dll-names depending on the actual environment.
// Example : testcomponent stardiv.uno.io.Pipe stm // Example : testcomponent com.sun.star.io.Pipe stm
// //
// Therefor the testcode must exist in teststm and the testservice must be named test.stardiv.uno.io.Pipe // Therefor the testcode must exist in teststm and the testservice must be named test.com.sun.star.io.Pipe
// //
#include <stdio.h> #include <stdio.h>
......
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#include <stdio.h> #include <stdio.h>
#include <com/sun/star/test/XSimpleTest.hpp> #include <com/sun/star/test/XSimpleTest.hpp>
...@@ -29,13 +28,10 @@ ...@@ -29,13 +28,10 @@
#include <com/sun/star/io/XConnectable.hpp> #include <com/sun/star/io/XConnectable.hpp>
#include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/lang/WrappedTargetException.hpp> #include <com/sun/star/lang/WrappedTargetException.hpp>
#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/factory.hxx> #include <cppuhelper/factory.hxx>
#include <cppuhelper/implbase1.hxx> #include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx> #include <cppuhelper/implbase2.hxx>
...@@ -58,14 +54,12 @@ using namespace ::com::sun::star::beans; ...@@ -58,14 +54,12 @@ using namespace ::com::sun::star::beans;
#define DATASTREAM_TEST_MAX_HANDLE 1 #define DATASTREAM_TEST_MAX_HANDLE 1
/**** /*
* The following test class tests XDataInputStream and XDataOutputStream at equal terms, * The following test class tests XDataInputStream and XDataOutputStream at equal terms,
* so when errors occur, it may be in either one implementation. * so when errors occur, it may be in either one implementation.
* The class also uses stardiv.uno.io.pipe. If problems occur, make sure to run also the * The class also uses com.sun.star.io.pipe. If problems occur, make sure to run also the
* pipe test routines ( test.com.sun.star.io.pipe ). * pipe test routines ( test.com.sun.star.io.pipe ).
* */
*
*****/
class ODataStreamTest : class ODataStreamTest :
public WeakImplHelper1< XSimpleTest > public WeakImplHelper1< XSimpleTest >
......
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
//------------------------------------------------------ //------------------------------------------------------
// testcomponent - Loads a service and its testcomponent from dlls performs a test. // testcomponent - Loads a service and its testcomponent from dlls performs a test.
// Expands the dll-names depending on the actual environment. // Expands the dll-names depending on the actual environment.
// Example : testcomponent stardiv.uno.io.Pipe stm // Example : testcomponent com.sun.star.io.Pipe stm
// //
// Therefor the testcode must exist in teststm and the testservice must be named test.stardiv.uno.io.Pipe // Therefor the testcode must exist in teststm and the testservice must be named test.com.sun.star.io.Pipe
// //
#include <stdio.h> #include <stdio.h>
......
...@@ -20,9 +20,9 @@ ...@@ -20,9 +20,9 @@
//------------------------------------------------------ //------------------------------------------------------
// testcomponent - Loads a service and its testcomponent from dlls performs a test. // testcomponent - Loads a service and its testcomponent from dlls performs a test.
// Expands the dll-names depending on the actual environment. // Expands the dll-names depending on the actual environment.
// Example : testcomponent stardiv.uno.io.Pipe stm // Example : testcomponent com.sun.star.io.Pipe stm
// //
// Therefor the testcode must exist in teststm and the testservice must be named test.stardiv.uno.io.Pipe // Therefor the testcode must exist in teststm and the testservice must be named test.com.sun.star.uno.io.Pipe
// //
#include <stdio.h> #include <stdio.h>
......
...@@ -20,9 +20,9 @@ ...@@ -20,9 +20,9 @@
//------------------------------------------------------ //------------------------------------------------------
// testcomponent - Loads a service and its testcomponent from dlls performs a test. // testcomponent - Loads a service and its testcomponent from dlls performs a test.
// Expands the dll-names depending on the actual environment. // Expands the dll-names depending on the actual environment.
// Example : testcomponent stardiv.uno.io.Pipe stm // Example : testcomponent com.sun.star.io.Pipe stm
// //
// Therefor the testcode must exist in teststm and the testservice must be named test.stardiv.uno.io.Pipe // Therefor the testcode must exist in teststm and the testservice must be named com.sun.star.io.Pipe
// //
#include <stdio.h> #include <stdio.h>
......
...@@ -91,11 +91,11 @@ Resource RID_SVXERRCODE ...@@ -91,11 +91,11 @@ Resource RID_SVXERRCODE
}; };
String (ERRCODE_SVX_FORMS_NOIOSERVICES | ERRCODE_CLASS_READ) & ERRCODE_RES_MASK String (ERRCODE_SVX_FORMS_NOIOSERVICES | ERRCODE_CLASS_READ) & ERRCODE_RES_MASK
{ {
Text [ en-US ] = "The form layer wasn't loaded as the required IO-services (stardiv.uno.io.*) could not be instantiated."; Text [ en-US ] = "The form layer wasn't loaded as the required IO-services (com.sun.star.io.*) could not be instantiated.";
}; };
String (ERRCODE_SVX_FORMS_NOIOSERVICES | ERRCODE_CLASS_WRITE) & ERRCODE_RES_MASK String (ERRCODE_SVX_FORMS_NOIOSERVICES | ERRCODE_CLASS_WRITE) & ERRCODE_RES_MASK
{ {
Text [ en-US ] = "The form layer wasn't written as the required IO services (stardiv.uno.io.*) could not be instantiated."; Text [ en-US ] = "The form layer wasn't written as the required IO services (com.sun.star.io.*) could not be instantiated.";
}; };
String (ERRCODE_SVX_FORMS_READWRITEFAILED | ERRCODE_CLASS_READ) & ERRCODE_RES_MASK String (ERRCODE_SVX_FORMS_READWRITEFAILED | ERRCODE_CLASS_READ) & ERRCODE_RES_MASK
{ {
......
...@@ -63,7 +63,7 @@ published interface XFastPropertySet: com::sun::star::uno::XInterface ...@@ -63,7 +63,7 @@ published interface XFastPropertySet: com::sun::star::uno::XInterface
if the new value cannot be converted to the type of the if the new value cannot be converted to the type of the
underlying property by an identity or widening conversion. underlying property by an identity or widening conversion.
@throws stardiv::uno::lang::WrappedTargetException @throws com::sun::star::lang::WrappedTargetException
if the implementation has an internal reason for the exception. if the implementation has an internal reason for the exception.
In this case the original exception is wrapped into this In this case the original exception is wrapped into this
com::sun::star::lang::WrappedTargetException. com::sun::star::lang::WrappedTargetException.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment