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
e26c4b4f
Kaydet (Commit)
e26c4b4f
authored
Eki 19, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
com::sun::star->css in hwpfilter/
Change-Id: I2ec12da777d04855d34233d5781f2304e181bbbd
üst
c4484a82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
attributes.cxx
hwpfilter/source/attributes.cxx
+1
-1
hwpreader.hxx
hwpfilter/source/hwpreader.hxx
+8
-8
No files found.
hwpfilter/source/attributes.cxx
Dosyayı görüntüle @
e26c4b4f
...
...
@@ -53,7 +53,7 @@ sal_Int16 SAL_CALL AttributeListImpl::getLength() throw (RuntimeException, std::
AttributeListImpl
::
AttributeListImpl
(
const
AttributeListImpl
&
r
)
:
cppu
::
WeakImplHelper
<
c
om
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>
(
r
)
cppu
::
WeakImplHelper
<
c
ss
::
xml
::
sax
::
XAttributeList
>
(
r
)
{
m_pImpl
=
new
AttributeListImpl_impl
;
*
m_pImpl
=
*
(
r
.
m_pImpl
);
...
...
hwpfilter/source/hwpreader.hxx
Dosyayı görüntüle @
e26c4b4f
...
...
@@ -171,11 +171,11 @@ public:
// XServiceInfo
OUString
SAL_CALL
getImplementationName
()
throw
(
RuntimeException
,
std
::
exception
)
override
;
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
//XExtendedFilterDetection
virtual
OUString
SAL_CALL
detect
(
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rDescriptor
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
virtual
OUString
SAL_CALL
detect
(
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>&
rDescriptor
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
public
:
Reference
<
XFilter
>
rFilter
;
...
...
@@ -230,7 +230,7 @@ sal_Bool HwpImportFilter::filter( const Sequence< PropertyValue >& aDescriptor )
return
rFilter
->
filter
(
aDescriptor
);
}
void
HwpImportFilter
::
cancel
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
void
HwpImportFilter
::
cancel
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
rFilter
->
cancel
();
}
...
...
@@ -247,18 +247,18 @@ OUString HwpImportFilter::getImplementationName_Static() throw()
return
OUString
(
IMPLEMENTATION_NAME
);
}
OUString
HwpImportFilter
::
getImplementationName
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
OUString
HwpImportFilter
::
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
return
OUString
(
IMPLEMENTATION_NAME
);
}
sal_Bool
HwpImportFilter
::
supportsService
(
const
OUString
&
ServiceName
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
sal_Bool
HwpImportFilter
::
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
return
cppu
::
supportsService
(
this
,
ServiceName
);
}
//XExtendedFilterDetection
OUString
HwpImportFilter
::
detect
(
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
beans
::
PropertyValue
>&
rDescriptor
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
OUString
HwpImportFilter
::
detect
(
css
::
uno
::
Sequence
<
css
::
beans
::
PropertyValue
>&
rDescriptor
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
OUString
sTypeName
;
...
...
@@ -284,7 +284,7 @@ OUString HwpImportFilter::detect( ::com::sun::star::uno::Sequence< ::com::sun::s
return
sTypeName
;
}
Sequence
<
OUString
>
HwpImportFilter
::
getSupportedServiceNames
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
Sequence
<
OUString
>
HwpImportFilter
::
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
Sequence
<
OUString
>
aRet
(
2
);
OUString
*
pArray
=
aRet
.
getArray
();
...
...
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