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
f1e64562
Kaydet (Commit)
f1e64562
authored
Mar 31, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#708420 Uninitialized pointer field
Change-Id: I5b86736481b2df5ef6ea2c2746a603550051ac49
üst
31f91540
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
blink.hxx
sw/source/core/inc/blink.hxx
+14
-5
No files found.
sw/source/core/inc/blink.hxx
Dosyayı görüntüle @
f1e64562
...
@@ -36,10 +36,19 @@ class SwBlinkPortion
...
@@ -36,10 +36,19 @@ class SwBlinkPortion
sal_uInt16
nDir
;
sal_uInt16
nDir
;
public
:
public
:
SwBlinkPortion
(
const
SwLinePortion
*
pPortion
,
sal_uInt16
nDirection
)
SwBlinkPortion
(
const
SwLinePortion
*
pPortion
,
sal_uInt16
nDirection
)
{
pPor
=
pPortion
;
nDir
=
nDirection
;
}
:
pPor
(
pPortion
)
SwBlinkPortion
(
const
SwBlinkPortion
*
pBlink
,
const
SwLinePortion
*
pPort
)
,
pFrm
(
NULL
)
{
pPor
=
pPort
;
pFrm
=
pBlink
->
pFrm
;
aPos
=
pBlink
->
aPos
;
nDir
=
pBlink
->
nDir
;
}
,
nDir
(
nDirection
)
{
}
SwBlinkPortion
(
const
SwBlinkPortion
*
pBlink
,
const
SwLinePortion
*
pPort
)
:
aPos
(
pBlink
->
aPos
)
,
pPor
(
pPort
)
,
pFrm
(
pBlink
->
pFrm
)
,
nDir
(
pBlink
->
nDir
)
{
}
void
SetPos
(
const
Point
&
aNew
){
aPos
=
aNew
;
}
void
SetPos
(
const
Point
&
aNew
){
aPos
=
aNew
;
}
const
Point
&
GetPos
()
const
{
return
aPos
;
}
const
Point
&
GetPos
()
const
{
return
aPos
;
}
void
SetRootFrm
(
const
SwRootFrm
*
pNew
){
pFrm
=
pNew
;
}
void
SetRootFrm
(
const
SwRootFrm
*
pNew
){
pFrm
=
pNew
;
}
...
@@ -71,7 +80,7 @@ public:
...
@@ -71,7 +80,7 @@ public:
void
Replace
(
const
SwLinePortion
*
pOld
,
const
SwLinePortion
*
pNew
);
void
Replace
(
const
SwLinePortion
*
pOld
,
const
SwLinePortion
*
pNew
);
void
Delete
(
const
SwLinePortion
*
pPor
);
void
Delete
(
const
SwLinePortion
*
pPor
);
void
FrmDelete
(
const
SwRootFrm
*
pRoot
);
void
FrmDelete
(
const
SwRootFrm
*
pRoot
);
inline
bool
IsVisible
()
const
{
return
bVisible
;
}
bool
IsVisible
()
const
{
return
bVisible
;
}
};
};
// Blink-Manager, global variable, see Blink.Cxx
// Blink-Manager, global variable, see Blink.Cxx
...
...
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