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
ea7d6dc6
Kaydet (Commit)
ea7d6dc6
authored
Haz 15, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: deobfuscate a little
Change-Id: I653ed0132f9997164b6bf53e9e6237bfe4fa3fff
üst
010f1e97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
ndindex.hxx
sw/inc/ndindex.hxx
+12
-6
No files found.
sw/inc/ndindex.hxx
Dosyayı görüntüle @
ea7d6dc6
...
@@ -217,11 +217,13 @@ inline bool SwNodeIndex::operator!=( const SwNodeIndex& rIdx ) const
...
@@ -217,11 +217,13 @@ inline bool SwNodeIndex::operator!=( const SwNodeIndex& rIdx ) const
inline
sal_uLong
SwNodeIndex
::
operator
++
()
inline
sal_uLong
SwNodeIndex
::
operator
++
()
{
{
return
(
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
+
1
]
)
->
GetIndex
();
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
+
1
];
return
m_pNode
->
GetIndex
();
}
}
inline
sal_uLong
SwNodeIndex
::
operator
--
()
inline
sal_uLong
SwNodeIndex
::
operator
--
()
{
{
return
(
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
-
1
]
)
->
GetIndex
();
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
-
1
];
return
m_pNode
->
GetIndex
();
}
}
inline
sal_uLong
SwNodeIndex
::
operator
++
(
int
)
inline
sal_uLong
SwNodeIndex
::
operator
++
(
int
)
{
{
...
@@ -238,19 +240,23 @@ inline sal_uLong SwNodeIndex::operator--(int)
...
@@ -238,19 +240,23 @@ inline sal_uLong SwNodeIndex::operator--(int)
inline
sal_uLong
SwNodeIndex
::
operator
+=
(
sal_uLong
nWert
)
inline
sal_uLong
SwNodeIndex
::
operator
+=
(
sal_uLong
nWert
)
{
{
return
(
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
+
nWert
]
)
->
GetIndex
();
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
+
nWert
];
return
m_pNode
->
GetIndex
();
}
}
inline
sal_uLong
SwNodeIndex
::
operator
-=
(
sal_uLong
nWert
)
inline
sal_uLong
SwNodeIndex
::
operator
-=
(
sal_uLong
nWert
)
{
{
return
(
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
-
nWert
]
)
->
GetIndex
();
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
-
nWert
];
return
m_pNode
->
GetIndex
();
}
}
inline
sal_uLong
SwNodeIndex
::
operator
+=
(
const
SwNodeIndex
&
rIndex
)
inline
sal_uLong
SwNodeIndex
::
operator
+=
(
const
SwNodeIndex
&
rIndex
)
{
{
return
(
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
+
rIndex
.
GetIndex
()
]
)
->
GetIndex
();
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
+
rIndex
.
GetIndex
()
];
return
m_pNode
->
GetIndex
();
}
}
inline
sal_uLong
SwNodeIndex
::
operator
-=
(
const
SwNodeIndex
&
rIndex
)
inline
sal_uLong
SwNodeIndex
::
operator
-=
(
const
SwNodeIndex
&
rIndex
)
{
{
return
(
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
-
rIndex
.
GetIndex
()
]
)
->
GetIndex
();
m_pNode
=
GetNodes
()[
m_pNode
->
GetIndex
()
-
rIndex
.
GetIndex
()
];
return
m_pNode
->
GetIndex
();
}
}
inline
SwNodeIndex
&
SwNodeIndex
::
operator
=
(
sal_uLong
nWert
)
inline
SwNodeIndex
&
SwNodeIndex
::
operator
=
(
sal_uLong
nWert
)
...
...
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