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
40045b5c
Kaydet (Commit)
40045b5c
authored
Nis 28, 2017
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:salunicodeliteral: editeng
Change-Id: I5db29ba3505d914ec05826128713d7e25091ed11
üst
c049946e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
AccessibleEditableTextPara.cxx
editeng/source/accessibility/AccessibleEditableTextPara.cxx
+1
-1
editattr.hxx
editeng/source/editeng/editattr.hxx
+1
-1
Trie.cxx
editeng/source/lookuptree/Trie.cxx
+2
-2
unotext.cxx
editeng/source/uno/unotext.cxx
+2
-2
tstpitem.hxx
include/editeng/tstpitem.hxx
+2
-2
No files found.
editeng/source/accessibility/AccessibleEditableTextPara.cxx
Dosyayı görüntüle @
40045b5c
...
...
@@ -2070,7 +2070,7 @@ namespace accessibility
if
(
nIndex
<=
aBoundary
.
endPos
)
{
nextWord
=
aBoundary
.
endPos
;
if
(
sText
.
getStr
()[
nextWord
]
==
sal_Unicode
(
' '
)
)
nextWord
++
;
if
(
sText
.
getStr
()[
nextWord
]
==
u' '
)
nextWord
++
;
bWord
=
implGetWordBoundary
(
aBoundary
,
nextWord
);
}
...
...
editeng/source/editeng/editattr.hxx
Dosyayı görüntüle @
40045b5c
...
...
@@ -51,7 +51,7 @@ class SvxCaseMapItem;
class
SfxGrabBagItem
;
#define CH_FEATURE_OLD (sal_uInt8) 0xFF
#define CH_FEATURE
(sal_Unicode) 0x01
#define CH_FEATURE
u'\x0001'
// DEF_METRIC: For my pool, the DefMetric should always appear when
// GetMetric (nWhich)!
...
...
editeng/source/lookuptree/Trie.cxx
Dosyayı görüntüle @
40045b5c
...
...
@@ -71,7 +71,7 @@ void TrieNode::addNewChild(TrieNode* pChild)
if
(
pChild
->
mCharacter
>=
'a'
&&
pChild
->
mCharacter
<=
'z'
)
{
mLatinArray
[
pChild
->
mCharacter
-
sal_Unicode
(
'a'
)
]
=
pChild
;
mLatinArray
[
pChild
->
mCharacter
-
u'a'
]
=
pChild
;
}
else
{
...
...
@@ -84,7 +84,7 @@ TrieNode* TrieNode::findChild(sal_Unicode aInputCharacter)
if
(
aInputCharacter
>=
'a'
&&
aInputCharacter
<=
'z'
)
{
return
mLatinArray
[
aInputCharacter
-
sal_Unicode
(
'a'
)
];
return
mLatinArray
[
aInputCharacter
-
u'a'
];
}
vector
<
TrieNode
*>::
iterator
iNode
;
...
...
editeng/source/uno/unotext.cxx
Dosyayı görüntüle @
40045b5c
...
...
@@ -1806,7 +1806,7 @@ void SAL_CALL SvxUnoTextBase::insertControlCharacter( const uno::Reference< text
{
case
text
:
:
ControlCharacter
::
PARAGRAPH_BREAK
:
{
const
OUString
aText
(
(
sal_Unicode
)
13
);
// '\r' does not work on Mac
const
OUString
aText
(
u
'\
x000D
'
);
// '\r' does not work on Mac
insertString
(
xRange
,
aText
,
bAbsorb
);
return
;
...
...
@@ -1856,7 +1856,7 @@ void SAL_CALL SvxUnoTextBase::insertControlCharacter( const uno::Reference< text
aRange
.
nEndPos
=
aRange
.
nStartPos
;
pRange
->
SetSelection
(
aRange
);
const
OUString
aText
(
(
sal_Unicode
)
13
);
// '\r' does not work on Mac
const
OUString
aText
(
u
'\
x000D
'
);
// '\r' does not work on Mac
pRange
->
setString
(
aText
);
aRange
.
nStartPos
=
0
;
...
...
include/editeng/tstpitem.hxx
Dosyayı görüntüle @
40045b5c
...
...
@@ -29,8 +29,8 @@
#define SVX_TAB_DEFCOUNT 10
#define SVX_TAB_DEFDIST 1134 // 2cm in twips
#define SVX_TAB_NOTFOUND USHRT_MAX
#define cDfltDecimalChar
(sal_Unicode(0x00))
// Get from IntlWrapper
#define cDfltFillChar
(sal_Unicode(' '))
#define cDfltDecimalChar
u'\0'
// Get from IntlWrapper
#define cDfltFillChar
u' '
class
EDITENG_DLLPUBLIC
SvxTabStop
{
...
...
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