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
d178cb40
Kaydet (Commit)
d178cb40
authored
Eyl 09, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/editeng/editobj.hxx from String to OUString
Change-Id: I076ae20fb21accf8ff7e7fad096534e97ba7dab4
üst
fbffa4e7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
editobj.cxx
editeng/source/editeng/editobj.cxx
+1
-1
editobj.hxx
include/editeng/editobj.hxx
+1
-1
AccessiblePageHeader.cxx
sc/source/ui/Accessibility/AccessiblePageHeader.cxx
+1
-1
pptinanimations.cxx
sd/source/filter/ppt/pptinanimations.cxx
+1
-1
svdotxat.cxx
svx/source/svdraw/svdotxat.cxx
+1
-1
cell.cxx
svx/source/table/cell.cxx
+1
-1
AnnotationWin.cxx
sw/source/ui/docvw/AnnotationWin.cxx
+1
-1
No files found.
editeng/source/editeng/editobj.cxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -234,7 +234,7 @@ sal_Int32 EditTextObject::GetParagraphCount() const
return
mpImpl
->
GetParagraphCount
();
}
String
EditTextObject
::
GetText
(
sal_Int32
nPara
)
const
OU
String
EditTextObject
::
GetText
(
sal_Int32
nPara
)
const
{
return
mpImpl
->
GetText
(
nPara
);
}
...
...
include/editeng/editobj.hxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -90,7 +90,7 @@ public:
sal_Int32
GetParagraphCount
()
const
;
String
GetText
(
sal_Int32
nPara
)
const
;
OU
String
GetText
(
sal_Int32
nPara
)
const
;
void
ClearPortionInfo
();
...
...
sc/source/ui/Accessibility/AccessiblePageHeader.cxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -400,7 +400,7 @@ sal_Bool ScAccessiblePageHeader::IsDefunc( const uno::Reference<XAccessibleState
void
ScAccessiblePageHeader
::
AddChild
(
const
EditTextObject
*
pArea
,
sal_uInt32
nIndex
,
SvxAdjust
eAdjust
)
{
if
(
pArea
&&
(
pArea
->
GetText
(
0
).
Len
()
||
(
pArea
->
GetParagraphCount
()
>
1
)))
if
(
pArea
&&
(
!
pArea
->
GetText
(
0
).
isEmpty
()
||
(
pArea
->
GetParagraphCount
()
>
1
)))
{
if
(
maAreas
[
nIndex
])
{
...
...
sd/source/filter/ppt/pptinanimations.cxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -3076,7 +3076,7 @@ sal_Int32 AnimationImporter::importTargetElementContainer( const Atom* pAtom, An
while
(
(
nPara
<
nParaCount
)
&&
(
begin
>
0
)
)
{
sal_Int32
nParaLength
=
rEditTextObject
.
GetText
(
nPara
).
Len
()
+
1
;
sal_Int32
nParaLength
=
rEditTextObject
.
GetText
(
nPara
).
getLength
()
+
1
;
begin
-=
nParaLength
;
end
-=
nParaLength
;
nPara
++
;
...
...
svx/source/svdraw/svdotxat.cxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -366,7 +366,7 @@ bool SdrTextObj::HasText() const
sal_Int32
nParaCount
=
rETO
.
GetParagraphCount
();
if
(
nParaCount
>
0
)
bHasText
=
(
nParaCount
>
1
)
||
(
rETO
.
GetText
(
0
).
Len
()
!=
0
);
bHasText
=
(
nParaCount
>
1
)
||
(
!
rETO
.
GetText
(
0
).
isEmpty
()
);
}
return
bHasText
;
...
...
svx/source/table/cell.cxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -560,7 +560,7 @@ bool Cell::hasText() const
{
if
(
rTextObj
.
GetParagraphCount
()
==
1
)
{
if
(
rTextObj
.
GetText
(
0
).
Len
()
==
0
)
if
(
rTextObj
.
GetText
(
0
).
isEmpty
()
)
return
false
;
}
return
true
;
...
...
sw/source/ui/docvw/AnnotationWin.cxx
Dosyayı görüntüle @
d178cb40
...
...
@@ -235,7 +235,7 @@ void SwAnnotationWin::InitAnswer(OutlinerParaObject* pText)
// insert old, selected text or "..."
// TODO: iterate over all paragraphs, not only first one to find out if it is empty
if
(
pText
->
GetTextObject
().
GetText
(
0
).
Len
())
if
(
!
pText
->
GetTextObject
().
GetText
(
0
).
isEmpty
())
GetOutlinerView
()
->
GetEditView
().
InsertText
(
pText
->
GetTextObject
());
else
GetOutlinerView
()
->
InsertText
(
OUString
(
"..."
),
false
);
...
...
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