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
f4166f96
Kaydet (Commit)
f4166f96
authored
May 11, 2014
tarafından
Matteo Casalin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_uInt16 to size_t
Change-Id: I46d85e82376a3135408ab77ad31b76a5edbe9ce7
üst
42f2f473
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
brdcst.hxx
include/svl/brdcst.hxx
+1
-1
svdviter.hxx
include/svx/svdviter.hxx
+1
-1
stlpool.cxx
sd/source/core/stlpool.cxx
+2
-2
stlsheet.cxx
sd/source/core/stlsheet.cxx
+2
-2
svdmark.cxx
svx/source/svdraw/svdmark.cxx
+2
-2
svdviter.cxx
svx/source/svdraw/svdviter.cxx
+2
-2
unostyle.cxx
sw/source/core/unocore/unostyle.cxx
+2
-2
No files found.
include/svl/brdcst.hxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -57,7 +57,7 @@ public:
{
return
m_Listeners
.
size
();
}
SfxListener
*
GetListener
(
s
al_uInt16
nNo
)
const
SfxListener
*
GetListener
(
s
ize_t
nNo
)
const
{
return
m_Listeners
[
nNo
];
}
...
...
include/svx/svdviter.hxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -68,7 +68,7 @@ class SVX_DLLPUBLIC SdrViewIter
const
SdrObject
*
mpObject
;
SdrView
*
mpAktView
;
s
al_uInt32
mnListenerNum
;
s
ize_t
mnListenerNum
;
sal_uInt32
mnPageViewNum
;
sal_uInt32
mnOutDevNum
;
...
...
sd/source/core/stlpool.cxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -1443,10 +1443,10 @@ SdStyleSheetVector SdStyleSheetPool::CreateChildList( SdStyleSheet* pSheet )
{
SdStyleSheetVector
aResult
;
sal_uInt16
nListenerCount
=
pSheet
->
GetListenerCount
();
const
size_t
nListenerCount
=
pSheet
->
GetListenerCount
();
if
(
nListenerCount
>
0
)
{
for
(
s
al_uInt16
n
=
0
;
n
<
nListenerCount
;
n
++
)
for
(
s
ize_t
n
=
0
;
n
<
nListenerCount
;
++
n
)
{
SdStyleSheet
*
pChild
=
dynamic_cast
<
SdStyleSheet
*
>
(
pSheet
->
GetListener
(
n
)
);
if
(
pChild
&&
pChild
->
GetParent
()
==
pSheet
->
GetName
())
...
...
sd/source/core/stlsheet.cxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -329,10 +329,10 @@ bool SdStyleSheet::IsUsed() const
{
bool
bResult
=
false
;
sal_uInt16
nListenerCount
=
GetListenerCount
();
const
size_t
nListenerCount
=
GetListenerCount
();
if
(
nListenerCount
>
0
)
{
for
(
s
al_uInt16
n
=
0
;
n
<
nListenerCount
;
n
++
)
for
(
s
ize_t
n
=
0
;
n
<
nListenerCount
;
++
n
)
{
SfxListener
*
pListener
=
GetListener
(
n
);
if
(
pListener
==
this
)
...
...
svx/source/svdraw/svdmark.cxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -877,9 +877,9 @@ namespace sdr
if
(
pBC
)
{
sal_uInt16
nLstAnz
(
pBC
->
GetListenerCount
());
const
size_t
nLstAnz
(
pBC
->
GetListenerCount
());
for
(
s
al_uInt16
nl
(
0
);
nl
<
nLstAnz
;
nl
++
)
for
(
s
ize_t
nl
=
0
;
nl
<
nLstAnz
;
++
nl
)
{
SfxListener
*
pLst
=
pBC
->
GetListener
(
nl
);
SdrEdgeObj
*
pEdge
=
PTR_CAST
(
SdrEdgeObj
,
pLst
);
...
...
svx/source/svdraw/svdviter.cxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -141,11 +141,11 @@ SdrView* SdrViewIter::ImpFindView()
{
if
(
mpModel
)
{
sal_uInt32
nLsAnz
(
mpModel
->
GetListenerCount
());
const
size_t
nLsAnz
(
mpModel
->
GetListenerCount
());
while
(
mnListenerNum
<
nLsAnz
)
{
SfxListener
*
pLs
=
mpModel
->
GetListener
(
(
sal_uInt16
)
mnListenerNum
);
SfxListener
*
pLs
=
mpModel
->
GetListener
(
mnListenerNum
);
mpAktView
=
PTR_CAST
(
SdrView
,
pLs
);
if
(
mpAktView
)
...
...
sw/source/core/unocore/unostyle.cxx
Dosyayı görüntüle @
f4166f96
...
...
@@ -1034,9 +1034,9 @@ void SwXStyleFamily::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
SwXStyle
*
SwXStyleFamily
::
_FindStyle
(
const
OUString
&
rStyleName
)
const
{
sal_uInt16
nLCount
=
pBasePool
->
GetListenerCount
();
const
size_t
nLCount
=
pBasePool
->
GetListenerCount
();
SfxListener
*
pListener
=
0
;
for
(
s
al_uInt16
i
=
0
;
i
<
nLCount
;
i
++
)
for
(
s
ize_t
i
=
0
;
i
<
nLCount
;
++
i
)
{
pListener
=
pBasePool
->
GetListener
(
i
);
SwXStyle
*
pTempStyle
=
dynamic_cast
<
SwXStyle
*>
(
pListener
);
...
...
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