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
a2ea07f0
Kaydet (Commit)
a2ea07f0
authored
Eyl 09, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert include/editeng/editdata.hxx from String to OUString
Change-Id: I5bdb26880448ce0f71bf1b6639fcf2db3e472a50
üst
b929c663
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
AccessibleEditableTextPara.cxx
editeng/source/accessibility/AccessibleEditableTextPara.cxx
+1
-1
unoedprx.cxx
editeng/source/uno/unoedprx.cxx
+4
-4
editdata.hxx
include/editeng/editdata.hxx
+2
-2
htmlpars.cxx
sc/source/filter/html/htmlpars.cxx
+1
-1
No files found.
editeng/source/accessibility/AccessibleEditableTextPara.cxx
Dosyayı görüntüle @
a2ea07f0
...
...
@@ -2050,7 +2050,7 @@ namespace accessibility
// Translate EE Index to accessible index
sal_uInt16
nStart
=
rT
.
CalcEditEngineIndex
(
nPara
,
nEEStart
);
sal_uInt16
nEnd
=
nStart
+
aField
.
aCurrentText
.
Len
();
sal_uInt16
nEnd
=
nStart
+
aField
.
aCurrentText
.
getLength
();
xRef
=
new
AccessibleHyperlink
(
rT
,
new
SvxFieldItem
(
*
aField
.
pFieldItem
),
nPara
,
nEEStart
,
nStart
,
nEnd
,
aField
.
aCurrentText
);
break
;
}
...
...
editeng/source/uno/unoedprx.cxx
Dosyayı görüntüle @
a2ea07f0
...
...
@@ -215,7 +215,7 @@ void SvxAccessibleTextIndex::SetEEIndex( sal_uInt16 nEEIndex, const SvxTextForwa
}
// #106010#
mnIndex
+=
::
std
::
max
(
aFieldInfo
.
aCurrentText
.
Len
()
-
1
,
0
);
mnIndex
+=
::
std
::
max
(
aFieldInfo
.
aCurrentText
.
getLength
()
-
1
,
0
);
}
}
...
...
@@ -269,14 +269,14 @@ void SvxAccessibleTextIndex::SetIndex( sal_Int32 nIndex, const SvxTextForwarder&
break
;
// #106010#
mnEEIndex
-=
::
std
::
max
(
aFieldInfo
.
aCurrentText
.
Len
()
-
1
,
0
);
mnEEIndex
-=
::
std
::
max
(
aFieldInfo
.
aCurrentText
.
getLength
()
-
1
,
0
);
// we're within a field
if
(
aFieldInfo
.
aPosition
.
nIndex
>=
mnEEIndex
)
{
AreInField
();
SetFieldOffset
(
::
std
::
max
(
aFieldInfo
.
aCurrentText
.
Len
()
-
1
,
0
)
-
(
aFieldInfo
.
aPosition
.
nIndex
-
mnEEIndex
),
aFieldInfo
.
aCurrentText
.
Len
()
);
SetFieldOffset
(
::
std
::
max
(
aFieldInfo
.
aCurrentText
.
getLength
()
-
1
,
0
)
-
(
aFieldInfo
.
aPosition
.
nIndex
-
mnEEIndex
),
aFieldInfo
.
aCurrentText
.
getLength
()
);
mnEEIndex
=
aFieldInfo
.
aPosition
.
nIndex
;
break
;
}
...
...
include/editeng/editdata.hxx
Dosyayı görüntüle @
a2ea07f0
...
...
@@ -211,7 +211,7 @@ inline void ESelection::Adjust()
struct
EDITENG_DLLPUBLIC
EFieldInfo
{
SvxFieldItem
*
pFieldItem
;
String
aCurrentText
;
OUString
aCurrentText
;
EPosition
aPosition
;
EFieldInfo
();
...
...
@@ -246,7 +246,7 @@ struct ImportInfo
int
nToken
;
short
nTokenValue
;
String
aText
;
OUString
aText
;
void
*
pAttrs
;
// RTF: SvxRTFItemStackType*, HTML: SfxItemSet*
...
...
sc/source/filter/html/htmlpars.cxx
Dosyayı görüntüle @
a2ea07f0
...
...
@@ -2428,7 +2428,7 @@ bool ScHTMLTable::IsEmptyCell() const
bool
ScHTMLTable
::
IsSpaceCharInfo
(
const
ImportInfo
&
rInfo
)
{
return
(
rInfo
.
nToken
==
HTML_TEXTTOKEN
)
&&
(
rInfo
.
aText
.
Len
()
==
1
)
&&
(
rInfo
.
aText
.
GetChar
(
0
)
==
' '
);
return
(
rInfo
.
nToken
==
HTML_TEXTTOKEN
)
&&
(
rInfo
.
aText
.
getLength
()
==
1
)
&&
(
rInfo
.
aText
[
0
]
==
' '
);
}
ScHTMLTable
::
ScHTMLEntryPtr
ScHTMLTable
::
CreateEntry
()
const
...
...
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