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
d4943089
Kaydet (Commit)
d4943089
authored
Eyl 29, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1325077 Uninitialized pointer field
Change-Id: I74121c1cc94edf338cf40a3d186308491e1d2409
üst
4d5979d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
overflowingtxt.cxx
editeng/source/outliner/overflowingtxt.cxx
+4
-5
overflowingtxt.hxx
include/editeng/overflowingtxt.hxx
+1
-1
No files found.
editeng/source/outliner/overflowingtxt.cxx
Dosyayı görüntüle @
d4943089
...
@@ -135,16 +135,15 @@ ESelection OverflowingText::GetInsertionPointSel()
...
@@ -135,16 +135,15 @@ ESelection OverflowingText::GetInsertionPointSel()
// class NonOverflowingText
// class NonOverflowingText
NonOverflowingText
::
NonOverflowingText
(
const
EditTextObject
*
pTObj
,
bool
bLastParaInterrupted
)
NonOverflowingText
::
NonOverflowingText
(
const
EditTextObject
*
/*pTObj*/
,
bool
bLastParaInterrupted
)
:
mpContentTextObj
(
pTObj
->
Clone
()),
:
mbLastParaInterrupted
(
bLastParaInterrupted
)
mbLastParaInterrupted
(
bLastParaInterrupted
)
{
{
// XXX: may have to delete pTObj
// XXX: may have to delete pTObj
}
}
NonOverflowingText
::
NonOverflowingText
(
const
ESelection
&
aSel
,
bool
bLastParaInterrupted
)
NonOverflowingText
::
NonOverflowingText
(
const
ESelection
&
aSel
,
bool
bLastParaInterrupted
)
:
maContentSel
(
aSel
)
,
:
maContentSel
(
aSel
)
mbLastParaInterrupted
(
bLastParaInterrupted
)
,
mbLastParaInterrupted
(
bLastParaInterrupted
)
{
{
}
}
...
...
include/editeng/overflowingtxt.hxx
Dosyayı görüntüle @
d4943089
...
@@ -96,7 +96,6 @@ private:
...
@@ -96,7 +96,6 @@ private:
NonOverflowingText
(
const
ESelection
&
aSel
,
bool
bLastParaInterrupted
);
NonOverflowingText
(
const
ESelection
&
aSel
,
bool
bLastParaInterrupted
);
friend
class
Outliner
;
friend
class
Outliner
;
const
EditTextObject
*
mpContentTextObj
;
const
ESelection
maContentSel
;
const
ESelection
maContentSel
;
const
bool
mbLastParaInterrupted
;
const
bool
mbLastParaInterrupted
;
};
};
...
@@ -112,6 +111,7 @@ class EDITENG_DLLPUBLIC OFlowChainedText
...
@@ -112,6 +111,7 @@ class EDITENG_DLLPUBLIC OFlowChainedText
{
{
public
:
public
:
OFlowChainedText
(
Outliner
*
,
bool
);
OFlowChainedText
(
Outliner
*
,
bool
);
~
OFlowChainedText
();
OutlinerParaObject
*
InsertOverflowingText
(
Outliner
*
,
OutlinerParaObject
*
);
OutlinerParaObject
*
InsertOverflowingText
(
Outliner
*
,
OutlinerParaObject
*
);
OutlinerParaObject
*
RemoveOverflowingText
(
Outliner
*
);
OutlinerParaObject
*
RemoveOverflowingText
(
Outliner
*
);
...
...
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