diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-09 11:05:53 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-09 11:14:44 +0000 |
commit | a3db4959b07d2454fba7774f04c7658ae4fba783 (patch) | |
tree | fb9853e4158d2b39fd80c302b54440cf56e654f8 /tools | |
parent | e31205f3ec1f941ab5a188bfde6329edf2acc55b (diff) |
com::sun::star->css in tools/ and ucb/
Change-Id: I695ff721efd63b8ca0dd3c61ba5a4fef2c43cde6
Reviewed-on: https://gerrit.libreoffice.org/19854
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/datetime/tdate.cxx | 2 | ||||
-rw-r--r-- | tools/source/datetime/ttime.cxx | 4 | ||||
-rw-r--r-- | tools/source/debug/debug.cxx | 6 | ||||
-rw-r--r-- | tools/source/ref/globname.cxx | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/tools/source/datetime/tdate.cxx b/tools/source/datetime/tdate.cxx index 808ac4888d2d..b6790b035944 100644 --- a/tools/source/datetime/tdate.cxx +++ b/tools/source/datetime/tdate.cxx @@ -169,7 +169,7 @@ Date::Date( DateInitSystem ) #endif } -Date::Date( const ::com::sun::star::util::DateTime& rDateTime ) +Date::Date( const css::util::DateTime& rDateTime ) { setDateFromDMY( rDateTime.Day, rDateTime.Month, rDateTime.Year ); } diff --git a/tools/source/datetime/ttime.cxx b/tools/source/datetime/ttime.cxx index 47dd81b144b0..3b4a809bb62b 100644 --- a/tools/source/datetime/ttime.cxx +++ b/tools/source/datetime/ttime.cxx @@ -149,11 +149,11 @@ Time::Time( sal_uInt32 nHour, sal_uInt32 nMin, sal_uInt32 nSec, sal_uInt64 nNano { init(nHour, nMin, nSec, nNanoSec); } -Time::Time( const ::com::sun::star::util::Time &_rTime ) +Time::Time( const css::util::Time &_rTime ) { init(_rTime.Hours, _rTime.Minutes, _rTime.Seconds, _rTime.NanoSeconds); } -Time::Time( const ::com::sun::star::util::DateTime &_rDateTime ) +Time::Time( const css::util::DateTime &_rDateTime ) { init(_rDateTime.Hours, _rDateTime.Minutes, _rDateTime.Seconds, _rDateTime.NanoSeconds); } diff --git a/tools/source/debug/debug.cxx b/tools/source/debug/debug.cxx index 4006b5155876..ce7e0896ba72 100644 --- a/tools/source/debug/debug.cxx +++ b/tools/source/debug/debug.cxx @@ -87,7 +87,7 @@ void DbgUnhandledException(const css::uno::Any & caught, const char* currentFunc sMessage += currentFunction; sMessage += "\ntype: "; sMessage += OUStringToOString( caught.getValueTypeName(), osl_getThreadTextEncoding() ); - ::com::sun::star::uno::Exception exception; + css::uno::Exception exception; caught >>= exception; if ( !exception.Message.isEmpty() ) { @@ -101,7 +101,7 @@ void DbgUnhandledException(const css::uno::Any & caught, const char* currentFunc sMessage += pContext; } { - ::com::sun::star::configuration::CorruptedConfigurationException + css::configuration::CorruptedConfigurationException specialized; if ( caught >>= specialized ) { @@ -111,7 +111,7 @@ void DbgUnhandledException(const css::uno::Any & caught, const char* currentFunc } } { - ::com::sun::star::task::ErrorCodeIOException specialized; + css::task::ErrorCodeIOException specialized; if ( caught >>= specialized ) { sMessage += "\ndetails: "; diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx index b11e21f42508..edaf70548776 100644 --- a/tools/source/ref/globname.cxx +++ b/tools/source/ref/globname.cxx @@ -77,7 +77,7 @@ SvGlobalName::SvGlobalName( sal_uInt32 n1, sal_uInt16 n2, sal_uInt16 n3, { } -SvGlobalName::SvGlobalName( const com::sun::star::uno::Sequence < sal_Int8 >& aSeq ) +SvGlobalName::SvGlobalName( const css::uno::Sequence < sal_Int8 >& aSeq ) { // create SvGlobalName from a platform independent representation SvGUID aResult; @@ -269,11 +269,11 @@ OUString SvGlobalName::GetHexName() const return OStringToOUString(aHexBuffer.makeStringAndClear(), RTL_TEXTENCODING_ASCII_US); } -com::sun::star::uno::Sequence < sal_Int8 > SvGlobalName::GetByteSequence() const +css::uno::Sequence < sal_Int8 > SvGlobalName::GetByteSequence() const { // platform independent representation of a "GlobalName" // maybe transported remotely - com::sun::star::uno::Sequence< sal_Int8 > aResult( 16 ); + css::uno::Sequence< sal_Int8 > aResult( 16 ); aResult[ 0] = (sal_Int8) (pImp->szData.Data1 >> 24); aResult[ 1] = (sal_Int8) ((pImp->szData.Data1 << 8 ) >> 24); |