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
5645fb51
Kaydet (Commit)
5645fb51
authored
Eki 28, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: prefix members of SwTOXType
Change-Id: I8500dda538a82a920dd6164251bf193489b12a15
üst
8c85e746
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
tox.hxx
sw/inc/tox.hxx
+4
-4
tox.cxx
sw/source/core/tox/tox.cxx
+4
-4
No files found.
sw/inc/tox.hxx
Dosyayı görüntüle @
5645fb51
...
@@ -163,8 +163,8 @@ public:
...
@@ -163,8 +163,8 @@ public:
inline
TOXTypes
GetType
()
const
;
inline
TOXTypes
GetType
()
const
;
private
:
private
:
OUString
aName
;
OUString
m_
aName
;
TOXTypes
eType
;
TOXTypes
m_
eType
;
// @@@ public copy ctor, but no copy assignment?
// @@@ public copy ctor, but no copy assignment?
SwTOXType
&
operator
=
(
const
SwTOXType
&
)
=
delete
;
SwTOXType
&
operator
=
(
const
SwTOXType
&
)
=
delete
;
...
@@ -668,10 +668,10 @@ inline sal_uInt16 SwForm::GetFormMax() const
...
@@ -668,10 +668,10 @@ inline sal_uInt16 SwForm::GetFormMax() const
//SwTOXType
//SwTOXType
inline
OUString
SwTOXType
::
GetTypeName
()
const
inline
OUString
SwTOXType
::
GetTypeName
()
const
{
return
aName
;
}
{
return
m_
aName
;
}
inline
TOXTypes
SwTOXType
::
GetType
()
const
inline
TOXTypes
SwTOXType
::
GetType
()
const
{
return
eType
;
}
{
return
m_
eType
;
}
// SwTOXBase
// SwTOXBase
...
...
sw/source/core/tox/tox.cxx
Dosyayı görüntüle @
5645fb51
...
@@ -201,15 +201,15 @@ void SwTOXMark::InsertTOXMarks( SwTOXMarks& aMarks, const SwTOXType& rType )
...
@@ -201,15 +201,15 @@ void SwTOXMark::InsertTOXMarks( SwTOXMarks& aMarks, const SwTOXType& rType )
// Manage types of TOX
// Manage types of TOX
SwTOXType
::
SwTOXType
(
TOXTypes
eTyp
,
const
OUString
&
rName
)
SwTOXType
::
SwTOXType
(
TOXTypes
eTyp
,
const
OUString
&
rName
)
:
SwModify
(
0
),
:
SwModify
(
0
),
aName
(
rName
),
m_
aName
(
rName
),
eType
(
eTyp
)
m_
eType
(
eTyp
)
{
{
}
}
SwTOXType
::
SwTOXType
(
const
SwTOXType
&
rCopy
)
SwTOXType
::
SwTOXType
(
const
SwTOXType
&
rCopy
)
:
SwModify
(
const_cast
<
SwModify
*>
(
rCopy
.
GetRegisteredIn
())
),
:
SwModify
(
const_cast
<
SwModify
*>
(
rCopy
.
GetRegisteredIn
())
),
aName
(
rCopy
.
aName
),
m_aName
(
rCopy
.
m_
aName
),
eType
(
rCopy
.
eType
)
m_eType
(
rCopy
.
m_
eType
)
{
{
}
}
...
...
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