Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
93236fcd
Kaydet (Commit)
93236fcd
authored
Ock 29, 2012
tarafından
Ivan Timofeev
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove '#define UNOOUSTRING ::rtl::OUString'
üst
9cde190a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
50 additions
and
50 deletions
+50
-50
scdetect.cxx
sc/source/ui/unoobj/scdetect.cxx
+10
-10
sddetect.cxx
sd/source/ui/unoidl/sddetect.cxx
+10
-10
unomodule.cxx
sd/source/ui/unoidl/unomodule.cxx
+2
-2
sfxuno.hxx
sfx2/inc/sfx2/sfxuno.hxx
+0
-0
frmload.cxx
sfx2/source/view/frmload.cxx
+8
-8
smdetect.cxx
starmath/source/smdetect.cxx
+10
-10
swdetect.cxx
sw/source/ui/uno/swdetect.cxx
+8
-8
unomodule.cxx
sw/source/ui/uno/unomodule.cxx
+2
-2
No files found.
sc/source/ui/unoobj/scdetect.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -869,16 +869,16 @@ static sal_Bool lcl_MayBeDBase( SvStream& rStream )
SFX_IMPL_SINGLEFACTORY
(
ScFilterDetect
)
/* XServiceInfo */
UNOOUSTRING
SAL_CALL
ScFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
rtl
::
OUString
SAL_CALL
ScFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticImplementationName
();
}
\
/* XServiceInfo */
sal_Bool
SAL_CALL
ScFilterDetect
::
supportsService
(
const
UNOOUSTRING
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
sal_Bool
SAL_CALL
ScFilterDetect
::
supportsService
(
const
rtl
::
OUString
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
(
getSupportedServiceNames
());
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
(
getSupportedServiceNames
());
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
@@ -890,23 +890,23 @@ sal_Bool SAL_CALL ScFilterDetect::supportsService( const UNOOUSTRING& sServiceNa
}
/* XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SAL_CALL
ScFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
UNOSEQUENCE
<
rtl
::
OUString
>
SAL_CALL
ScFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticSupportedServiceNames
();
}
/* Helper for XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
ScFilterDetect
::
impl_getStaticSupportedServiceNames
()
UNOSEQUENCE
<
rtl
::
OUString
>
ScFilterDetect
::
impl_getStaticSupportedServiceNames
()
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
UNOOUSTRING
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
return
seqServiceNames
;
}
/* Helper for XServiceInfo */
UNOOUSTRING
ScFilterDetect
::
impl_getStaticImplementationName
()
OUString
ScFilterDetect
::
impl_getStaticImplementationName
()
{
return
UNOOUSTRING
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.calc.FormatDetector"
));
return
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.calc.FormatDetector"
));
}
/* Helper for registry */
...
...
sd/source/ui/unoidl/sddetect.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -489,16 +489,16 @@ SdFilterDetect::~SdFilterDetect()
SFX_IMPL_SINGLEFACTORY
(
SdFilterDetect
)
/* XServiceInfo */
UNOOUSTRING
SAL_CALL
SdFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
rtl
::
OUString
SAL_CALL
SdFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticImplementationName
();
}
\
/* XServiceInfo */
sal_Bool
SAL_CALL
SdFilterDetect
::
supportsService
(
const
UNOOUSTRING
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
sal_Bool
SAL_CALL
SdFilterDetect
::
supportsService
(
const
rtl
::
OUString
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
=
getSupportedServiceNames
();
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
=
getSupportedServiceNames
();
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
@@ -510,23 +510,23 @@ sal_Bool SAL_CALL SdFilterDetect::supportsService( const UNOOUSTRING& sServiceNa
}
/* XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SAL_CALL
SdFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
UNOSEQUENCE
<
rtl
::
OUString
>
SAL_CALL
SdFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticSupportedServiceNames
();
}
/* Helper for XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SdFilterDetect
::
impl_getStaticSupportedServiceNames
()
UNOSEQUENCE
<
rtl
::
OUString
>
SdFilterDetect
::
impl_getStaticSupportedServiceNames
()
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
UNOOUSTRING
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
return
seqServiceNames
;
}
/* Helper for XServiceInfo */
UNOOUSTRING
SdFilterDetect
::
impl_getStaticImplementationName
()
rtl
::
OUString
SdFilterDetect
::
impl_getStaticImplementationName
()
{
return
UNOOUSTRING
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.draw.FormatDetector"
));
return
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.draw.FormatDetector"
));
}
/* Helper for registry */
...
...
sd/source/ui/unoidl/unomodule.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -143,8 +143,8 @@ REFERENCE< XDISPATCH > SAL_CALL SdUnoModule::queryDispatch( const UNOURL& aURL,
sal_Bool
SAL_CALL
SdUnoModule
::
supportsService
(
const
::
rtl
::
OUString
&
sServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
=
getSupportedServiceNames
();
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
=
getSupportedServiceNames
();
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
sfx2/inc/sfx2/sfxuno.hxx
Dosyayı görüntüle @
93236fcd
This diff is collapsed.
Click to expand it.
sfx2/source/view/frmload.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -664,16 +664,16 @@ void SfxFrameLoader_Impl::cancel() throw( RuntimeException )
SFX_IMPL_SINGLEFACTORY
(
SfxFrameLoader_Impl
)
/* XServiceInfo */
UNOOUSTRING
SAL_CALL
SfxFrameLoader_Impl
::
getImplementationName
()
throw
(
RuntimeException
)
rtl
::
OUString
SAL_CALL
SfxFrameLoader_Impl
::
getImplementationName
()
throw
(
RuntimeException
)
{
return
impl_getStaticImplementationName
();
}
\
/* XServiceInfo */
sal_Bool
SAL_CALL
SfxFrameLoader_Impl
::
supportsService
(
const
UNOOUSTRING
&
sServiceName
)
throw
(
RuntimeException
)
sal_Bool
SAL_CALL
SfxFrameLoader_Impl
::
supportsService
(
const
rtl
::
OUString
&
sServiceName
)
throw
(
RuntimeException
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
=
getSupportedServiceNames
();
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
=
getSupportedServiceNames
();
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
@@ -685,22 +685,22 @@ sal_Bool SAL_CALL SfxFrameLoader_Impl::supportsService( const UNOOUSTRING& sServ
}
/* XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SAL_CALL
SfxFrameLoader_Impl
::
getSupportedServiceNames
()
throw
(
RuntimeException
)
UNOSEQUENCE
<
rtl
::
OUString
>
SAL_CALL
SfxFrameLoader_Impl
::
getSupportedServiceNames
()
throw
(
RuntimeException
)
{
return
impl_getStaticSupportedServiceNames
();
}
/* Helper for XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SfxFrameLoader_Impl
::
impl_getStaticSupportedServiceNames
()
UNOSEQUENCE
<
rtl
::
OUString
>
SfxFrameLoader_Impl
::
impl_getStaticSupportedServiceNames
()
{
UNOMUTEXGUARD
aGuard
(
UNOMUTEX
::
getGlobalMutex
()
);
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
(
1
);
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.SynchronousFrameLoader"
));
return
seqServiceNames
;
}
/* Helper for XServiceInfo */
UNOOUSTRING
SfxFrameLoader_Impl
::
impl_getStaticImplementationName
()
rtl
::
OUString
SfxFrameLoader_Impl
::
impl_getStaticImplementationName
()
{
return
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.office.FrameLoader"
));
}
...
...
starmath/source/smdetect.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -420,16 +420,16 @@ SmFilterDetect::~SmFilterDetect()
SFX_IMPL_SINGLEFACTORY
(
SmFilterDetect
)
/* XServiceInfo */
UNOOUSTRING
SAL_CALL
SmFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
rtl
::
OUString
SAL_CALL
SmFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticImplementationName
();
}
\
/* XServiceInfo */
sal_Bool
SAL_CALL
SmFilterDetect
::
supportsService
(
const
UNOOUSTRING
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
sal_Bool
SAL_CALL
SmFilterDetect
::
supportsService
(
const
rtl
::
OUString
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
=
getSupportedServiceNames
();
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
=
getSupportedServiceNames
();
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
@@ -441,23 +441,23 @@ sal_Bool SAL_CALL SmFilterDetect::supportsService( const UNOOUSTRING& sServiceNa
}
/* XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SAL_CALL
SmFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
UNOSEQUENCE
<
rtl
::
OUString
>
SAL_CALL
SmFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticSupportedServiceNames
();
}
/* Helper for XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SmFilterDetect
::
impl_getStaticSupportedServiceNames
()
UNOSEQUENCE
<
rtl
::
OUString
>
SmFilterDetect
::
impl_getStaticSupportedServiceNames
()
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
UNOOUSTRING
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
(
1
);
seqServiceNames
.
getArray
()
[
0
]
=
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
return
seqServiceNames
;
}
/* Helper for XServiceInfo */
UNOOUSTRING
SmFilterDetect
::
impl_getStaticImplementationName
()
rtl
::
OUString
SmFilterDetect
::
impl_getStaticImplementationName
()
{
return
UNOOUSTRING
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.math.FormatDetector"
));
return
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.math.FormatDetector"
));
}
/* Helper for registry */
...
...
sw/source/ui/uno/swdetect.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -426,16 +426,16 @@ SwFilterDetect::~SwFilterDetect()
SFX_IMPL_SINGLEFACTORY
(
SwFilterDetect
)
/* XServiceInfo */
UNOOUSTRING
SAL_CALL
SwFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
rtl
::
OUString
SAL_CALL
SwFilterDetect
::
getImplementationName
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticImplementationName
();
}
\
/* XServiceInfo */
sal_Bool
SAL_CALL
SwFilterDetect
::
supportsService
(
const
UNOOUSTRING
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
sal_Bool
SAL_CALL
SwFilterDetect
::
supportsService
(
const
rtl
::
OUString
&
sServiceName
)
throw
(
UNORUNTIMEEXCEPTION
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
=
getSupportedServiceNames
();
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
=
getSupportedServiceNames
();
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
@@ -447,15 +447,15 @@ sal_Bool SAL_CALL SwFilterDetect::supportsService( const UNOOUSTRING& sServiceNa
}
/* XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SAL_CALL
SwFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
UNOSEQUENCE
<
rtl
::
OUString
>
SAL_CALL
SwFilterDetect
::
getSupportedServiceNames
()
throw
(
UNORUNTIMEEXCEPTION
)
{
return
impl_getStaticSupportedServiceNames
();
}
/* Helper for XServiceInfo */
UNOSEQUENCE
<
UNOOUSTRING
>
SwFilterDetect
::
impl_getStaticSupportedServiceNames
()
UNOSEQUENCE
<
rtl
::
OUString
>
SwFilterDetect
::
impl_getStaticSupportedServiceNames
()
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
(
3
);
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
(
3
);
seqServiceNames
.
getArray
()
[
0
]
=
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.frame.ExtendedTypeDetection"
));
seqServiceNames
.
getArray
()
[
1
]
=
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.text.FormatDetector"
));
seqServiceNames
.
getArray
()
[
2
]
=
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.text.W4WFormatDetector"
));
...
...
@@ -463,7 +463,7 @@ UNOSEQUENCE< UNOOUSTRING > SwFilterDetect::impl_getStaticSupportedServiceNames()
}
/* Helper for XServiceInfo */
UNOOUSTRING
SwFilterDetect
::
impl_getStaticImplementationName
()
rtl
::
OUString
SwFilterDetect
::
impl_getStaticImplementationName
()
{
return
::
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"com.sun.star.comp.writer.FormatDetector"
));
}
...
...
sw/source/ui/uno/unomodule.cxx
Dosyayı görüntüle @
93236fcd
...
...
@@ -152,8 +152,8 @@ REFERENCE< XDISPATCH > SAL_CALL SwUnoModule::queryDispatch(
sal_Bool
SAL_CALL
SwUnoModule
::
supportsService
(
const
::
rtl
::
OUString
&
sServiceName
)
throw
(
uno
::
RuntimeException
)
{
UNOSEQUENCE
<
UNOOUSTRING
>
seqServiceNames
=
getSupportedServiceNames
();
const
UNOOUSTRING
*
pArray
=
seqServiceNames
.
getConstArray
();
UNOSEQUENCE
<
rtl
::
OUString
>
seqServiceNames
=
getSupportedServiceNames
();
const
rtl
::
OUString
*
pArray
=
seqServiceNames
.
getConstArray
();
for
(
sal_Int32
nCounter
=
0
;
nCounter
<
seqServiceNames
.
getLength
();
nCounter
++
)
{
if
(
pArray
[
nCounter
]
==
sServiceName
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment