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
bd479676
Kaydet (Commit)
bd479676
authored
Haz 27, 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: I8b045cf44b3e62616c8c3e0a896524af13310dd3
üst
5247da4e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
9 deletions
+8
-9
docundo.cxx
sw/source/core/undo/docundo.cxx
+4
-4
rolbck.cxx
sw/source/core/undo/rolbck.cxx
+1
-2
unattr.cxx
sw/source/core/undo/unattr.cxx
+1
-1
undel.cxx
sw/source/core/undo/undel.cxx
+2
-2
No files found.
sw/source/core/undo/docundo.cxx
Dosyayı görüntüle @
bd479676
...
...
@@ -308,8 +308,8 @@ SwUndoComments_t UndoManager::GetUndoComments() const
"GetUndoComments() called while in list action?"
);
SwUndoComments_t
ret
;
sal_uInt16
cons
t
nUndoCount
(
SdrUndoManager
::
GetUndoActionCount
(
TopLevel
));
for
(
s
al_uInt16
n
=
0
;
n
<
nUndoCount
;
++
n
)
const
size_
t
nUndoCount
(
SdrUndoManager
::
GetUndoActionCount
(
TopLevel
));
for
(
s
ize_t
n
=
0
;
n
<
nUndoCount
;
++
n
)
{
OUString
const
comment
(
SdrUndoManager
::
GetUndoActionComment
(
n
,
TopLevel
));
...
...
@@ -352,8 +352,8 @@ SwUndoComments_t UndoManager::GetRedoComments() const
"GetRedoComments() called while in list action?"
);
SwUndoComments_t
ret
;
sal_uInt16
cons
t
nRedoCount
(
SdrUndoManager
::
GetRedoActionCount
(
TopLevel
));
for
(
s
al_uInt16
n
=
0
;
n
<
nRedoCount
;
++
n
)
const
size_
t
nRedoCount
(
SdrUndoManager
::
GetRedoActionCount
(
TopLevel
));
for
(
s
ize_t
n
=
0
;
n
<
nRedoCount
;
++
n
)
{
OUString
const
comment
(
SdrUndoManager
::
GetRedoActionComment
(
n
,
TopLevel
));
...
...
sw/source/core/undo/rolbck.cxx
Dosyayı görüntüle @
bd479676
...
...
@@ -1127,8 +1127,7 @@ bool SwHistory::Rollback( SwDoc* pDoc, sal_uInt16 nStart )
return
false
;
SwHistoryHint
*
pHHt
;
sal_uInt16
i
;
for
(
i
=
Count
();
i
>
nStart
;
)
for
(
sal_uInt16
i
=
Count
();
i
>
nStart
;
)
{
pHHt
=
m_SwpHstry
[
--
i
];
pHHt
->
SetInDoc
(
pDoc
,
false
);
...
...
sw/source/core/undo/unattr.cxx
Dosyayı görüntüle @
bd479676
...
...
@@ -924,7 +924,7 @@ void SwUndoAttr::RemoveIdx( SwDoc& rDoc )
if
(
COMPLETE_STRING
!=
nCntnt
)
{
const
std
::
vector
<
sal_uInt16
>&
rArr
=
pHistoryHint
->
GetArr
();
for
(
s
al_uInt16
i
=
rArr
.
size
();
i
;
)
for
(
s
ize_t
i
=
rArr
.
size
();
i
;
)
{
if
(
RES_TXTATR_FTN
==
rArr
[
--
i
]
)
{
...
...
sw/source/core/undo/undel.cxx
Dosyayı görüntüle @
bd479676
...
...
@@ -54,7 +54,7 @@ static void lcl_MakeAutoFrms( const SwFrmFmts& rSpzArr, sal_uLong nMovedIndex )
{
SwFlyFrmFmt
*
pFmt
;
const
SwFmtAnchor
*
pAnchor
;
for
(
s
al_uInt16
n
=
0
;
n
<
rSpzArr
.
size
();
++
n
)
for
(
s
ize_t
n
=
0
;
n
<
rSpzArr
.
size
();
++
n
)
{
pFmt
=
(
SwFlyFrmFmt
*
)
rSpzArr
[
n
];
pAnchor
=
&
pFmt
->
GetAnchor
();
...
...
@@ -720,7 +720,7 @@ static void lcl_ReAnchorAtCntntFlyFrames( const SwFrmFmts& rSpzArr, SwPosition &
SwFlyFrmFmt
*
pFmt
;
const
SwFmtAnchor
*
pAnchor
;
const
SwPosition
*
pAPos
;
for
(
s
al_uInt16
n
=
0
;
n
<
rSpzArr
.
size
();
++
n
)
for
(
s
ize_t
n
=
0
;
n
<
rSpzArr
.
size
();
++
n
)
{
pFmt
=
(
SwFlyFrmFmt
*
)
rSpzArr
[
n
];
pAnchor
=
&
pFmt
->
GetAnchor
();
...
...
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