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
574086f4
Kaydet (Commit)
574086f4
authored
Mar 04, 2014
tarafından
Matteo Casalin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove '#define INLINE', inline in method definition is enough
Change-Id: I9c7ae289492e3ec8ada111a8dddfb5426ef22d30
üst
b49e0474
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
21 deletions
+13
-21
index.hxx
sw/inc/index.hxx
+13
-21
No files found.
sw/inc/index.hxx
Dosyayı görüntüle @
574086f4
...
...
@@ -26,12 +26,6 @@
class
SwIndexReg
;
struct
SwPosition
;
#ifdef DBG_UTIL
#define INLINE
#else
#define INLINE inline
#endif
/// Marks a character position inside a document model node.
class
SW_DLLPUBLIC
SwIndex
{
...
...
@@ -54,23 +48,23 @@ public:
SwIndex
(
const
SwIndex
&
,
short
nDiff
);
~
SwIndex
()
{
Remove
();
}
INLINE
SwIndex
&
operator
=
(
sal_Int32
const
);
SwIndex
&
operator
=
(
sal_Int32
const
);
SwIndex
&
operator
=
(
const
SwIndex
&
);
INLINE
sal_Int32
operator
++
();
INLINE
sal_Int32
operator
--
();
INLINE
sal_Int32
operator
++
(
int
);
INLINE
sal_Int32
operator
--
(
int
);
sal_Int32
operator
++
();
sal_Int32
operator
--
();
sal_Int32
operator
++
(
int
);
sal_Int32
operator
--
(
int
);
INLINE
sal_Int32
operator
+=
(
sal_Int32
const
);
INLINE
sal_Int32
operator
-=
(
sal_Int32
const
);
INLINE
sal_Int32
operator
+=
(
const
SwIndex
&
);
INLINE
sal_Int32
operator
-=
(
const
SwIndex
&
);
sal_Int32
operator
+=
(
sal_Int32
const
);
sal_Int32
operator
-=
(
sal_Int32
const
);
sal_Int32
operator
+=
(
const
SwIndex
&
);
sal_Int32
operator
-=
(
const
SwIndex
&
);
INLINE
bool
operator
<
(
const
SwIndex
&
)
const
;
INLINE
bool
operator
<=
(
const
SwIndex
&
)
const
;
INLINE
bool
operator
>
(
const
SwIndex
&
)
const
;
INLINE
bool
operator
>=
(
const
SwIndex
&
)
const
;
bool
operator
<
(
const
SwIndex
&
)
const
;
bool
operator
<=
(
const
SwIndex
&
)
const
;
bool
operator
>
(
const
SwIndex
&
)
const
;
bool
operator
>=
(
const
SwIndex
&
)
const
;
bool
operator
<
(
sal_Int32
const
nVal
)
const
{
return
m_nIndex
<
nVal
;
}
bool
operator
<=
(
sal_Int32
const
nVal
)
const
{
return
m_nIndex
<=
nVal
;
}
...
...
@@ -100,8 +94,6 @@ public:
const
SwIndexReg
*
GetIdxReg
()
const
{
return
m_pIndexReg
;
}
};
#undef INLINE
class
SwIndexReg
{
friend
class
SwIndex
;
...
...
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