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
326177f4
Kaydet (Commit)
326177f4
authored
Mar 28, 2015
tarafından
Bjoern Michaelsen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
reduce UNO boilerplate
Change-Id: I4f63b15c3c3f6e9e22d4a4732eef64190769dbba
üst
12038a61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
20 deletions
+7
-20
unotbl.cxx
sw/source/core/unocore/unotbl.cxx
+7
-20
No files found.
sw/source/core/unocore/unotbl.cxx
Dosyayı görüntüle @
326177f4
...
@@ -4657,40 +4657,27 @@ void SwXTableRows::removeByIndex(sal_Int32 nIndex, sal_Int32 nCount)
...
@@ -4657,40 +4657,27 @@ void SwXTableRows::removeByIndex(sal_Int32 nIndex, sal_Int32 nCount)
}
}
void
SwXTableRows
::
Modify
(
const
SfxPoolItem
*
pOld
,
const
SfxPoolItem
*
pNew
)
void
SwXTableRows
::
Modify
(
const
SfxPoolItem
*
pOld
,
const
SfxPoolItem
*
pNew
)
{
{
ClientModify
(
this
,
pOld
,
pNew
);
}
ClientModify
(
this
,
pOld
,
pNew
);
}
// SwXTableColumns
// SwXTableColumns
OUString
SwXTableColumns
::
getImplementationName
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
OUString
SwXTableColumns
::
getImplementationName
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
{
return
OUString
(
"SwXTableColumns"
);
}
return
OUString
(
"SwXTableColumns"
);
}
sal_Bool
SwXTableColumns
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
sal_Bool
SwXTableColumns
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
{
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
uno
::
Sequence
<
OUString
>
SwXTableColumns
::
getSupportedServiceNames
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
uno
::
Sequence
<
OUString
>
SwXTableColumns
::
getSupportedServiceNames
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
{
return
{
"com.sun.star.text.TableColumns"
};
}
uno
::
Sequence
<
OUString
>
aRet
(
1
);
OUString
*
pArray
=
aRet
.
getArray
();
pArray
[
0
]
=
"com.sun.star.text.TableColumns"
;
return
aRet
;
}
TYPEINIT1
(
SwXTableColumns
,
SwClient
);
TYPEINIT1
(
SwXTableColumns
,
SwClient
);
SwXTableColumns
::
SwXTableColumns
(
SwFrmFmt
&
rFrmFmt
)
:
SwXTableColumns
::
SwXTableColumns
(
SwFrmFmt
&
rFrmFmt
)
:
SwClient
(
&
rFrmFmt
)
SwClient
(
&
rFrmFmt
)
{
{
}
}
SwXTableColumns
::~
SwXTableColumns
()
SwXTableColumns
::~
SwXTableColumns
()
{
{
}
}
sal_Int32
SwXTableColumns
::
getCount
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
sal_Int32
SwXTableColumns
::
getCount
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
{
...
@@ -4712,7 +4699,7 @@ uno::Any SwXTableColumns::getByIndex(sal_Int32 nIndex)
...
@@ -4712,7 +4699,7 @@ uno::Any SwXTableColumns::getByIndex(sal_Int32 nIndex)
SolarMutexGuard
aGuard
;
SolarMutexGuard
aGuard
;
if
(
nIndex
<
0
||
getCount
()
<=
static_cast
<
size_t
>
(
nIndex
))
if
(
nIndex
<
0
||
getCount
()
<=
static_cast
<
size_t
>
(
nIndex
))
throw
lang
::
IndexOutOfBoundsException
();
throw
lang
::
IndexOutOfBoundsException
();
return
uno
::
makeAny
(
uno
::
Reference
<
uno
::
XInterface
());
// i#21699 not supported
return
uno
::
makeAny
(
uno
::
Reference
<
uno
::
XInterface
>
());
// i#21699 not supported
}
}
uno
::
Type
SAL_CALL
SwXTableColumns
::
getElementType
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
uno
::
Type
SAL_CALL
SwXTableColumns
::
getElementType
(
void
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
...
...
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