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
213571db
Kaydet (Commit)
213571db
authored
Nis 17, 2014
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SwTxtSlot::SwTxtSlot now takes an empty reference by default, not a NULL
Change-Id: I3fc7cef18dc1df228a648edb3020a976209f12ee
üst
fede08ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
inftxt.cxx
sw/source/core/text/inftxt.cxx
+3
-3
inftxt.hxx
sw/source/core/text/inftxt.hxx
+2
-2
No files found.
sw/source/core/text/inftxt.cxx
Dosyayı görüntüle @
213571db
...
...
@@ -1659,7 +1659,7 @@ SwTxtSlot::SwTxtSlot(
const
SwLinePortion
*
pPor
,
bool
bTxtLen
,
bool
bExgLists
,
OUString
const
&
p
Ch
)
OUString
const
&
r
Ch
)
:
pOldTxt
(
0
)
,
pOldSmartTagList
(
0
)
,
pOldGrammarCheckList
(
0
)
...
...
@@ -1668,13 +1668,13 @@ SwTxtSlot::SwTxtSlot(
,
nLen
(
0
)
,
pInf
(
NULL
)
{
if
(
p
Ch
.
isEmpty
()
)
if
(
r
Ch
.
isEmpty
()
)
{
bOn
=
pPor
->
GetExpTxt
(
*
pNew
,
aTxt
);
}
else
{
aTxt
=
p
Ch
;
aTxt
=
r
Ch
;
bOn
=
true
;
}
...
...
sw/source/core/text/inftxt.hxx
Dosyayı görüntüle @
213571db
...
...
@@ -775,9 +775,9 @@ protected:
SwTxtSizeInfo
*
pInf
;
public
:
// The replacement string originates either from the portion via GetExpText()
// or from the
char * pCh, if it is not NULL
// or from the
rCh, if it is not empty.
SwTxtSlot
(
const
SwTxtSizeInfo
*
pNew
,
const
SwLinePortion
*
pPor
,
bool
bTxtLen
,
bool
bExgLists
,
OUString
const
&
p
Ch
=
OUString
()
);
bool
bExgLists
,
OUString
const
&
r
Ch
=
OUString
()
);
~
SwTxtSlot
();
bool
IsOn
()
const
{
return
bOn
;
}
};
...
...
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