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
3b6ee586
Kaydet (Commit)
3b6ee586
authored
Eki 15, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused BreakIterator_Unicode::wordRule
Change-Id: I8cde0dfd7b760d8075f53b9de8a8d3a81a57dc27
üst
1744fed4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
breakiterator_unicode.hxx
i18npool/inc/breakiterator_unicode.hxx
+1
-1
breakiterator_th.cxx
i18npool/source/breakiterator/breakiterator_th.cxx
+1
-1
breakiterator_unicode.cxx
i18npool/source/breakiterator/breakiterator_unicode.cxx
+3
-4
No files found.
i18npool/inc/breakiterator_unicode.hxx
Dosyayı görüntüle @
3b6ee586
...
@@ -72,7 +72,7 @@ public:
...
@@ -72,7 +72,7 @@ public:
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
protected
:
protected
:
const
sal_Char
*
cBreakIterator
,
*
wordRule
,
*
lineRule
;
const
sal_Char
*
cBreakIterator
,
*
lineRule
;
Boundary
result
;
// for word break iterator
Boundary
result
;
// for word break iterator
struct
BI_Data
struct
BI_Data
...
...
i18npool/source/breakiterator/breakiterator_th.cxx
Dosyayı görüntüle @
3b6ee586
...
@@ -34,7 +34,7 @@ namespace com { namespace sun { namespace star { namespace i18n {
...
@@ -34,7 +34,7 @@ namespace com { namespace sun { namespace star { namespace i18n {
BreakIterator_th
::
BreakIterator_th
()
BreakIterator_th
::
BreakIterator_th
()
{
{
cBreakIterator
=
"com.sun.star.i18n.BreakIterator_th"
;
cBreakIterator
=
"com.sun.star.i18n.BreakIterator_th"
;
wordRule
=
lineRule
=
NULL
;
lineRule
=
NULL
;
}
}
BreakIterator_th
::~
BreakIterator_th
()
BreakIterator_th
::~
BreakIterator_th
()
...
...
i18npool/source/breakiterator/breakiterator_unicode.cxx
Dosyayı görüntüle @
3b6ee586
...
@@ -42,7 +42,6 @@ namespace com { namespace sun { namespace star { namespace i18n {
...
@@ -42,7 +42,6 @@ namespace com { namespace sun { namespace star { namespace i18n {
BreakIterator_Unicode
::
BreakIterator_Unicode
()
BreakIterator_Unicode
::
BreakIterator_Unicode
()
:
cBreakIterator
(
"com.sun.star.i18n.BreakIterator_Unicode"
)
// implementation name
:
cBreakIterator
(
"com.sun.star.i18n.BreakIterator_Unicode"
)
// implementation name
,
wordRule
(
"word"
)
,
lineRule
(
"line"
)
,
lineRule
(
"line"
)
,
icuBI
(
NULL
)
,
icuBI
(
NULL
)
,
aBreakType
(
0
)
,
aBreakType
(
0
)
...
@@ -91,12 +90,12 @@ void SAL_CALL BreakIterator_Unicode::loadICUBreakIterator(const com::sun::star::
...
@@ -91,12 +90,12 @@ void SAL_CALL BreakIterator_Unicode::loadICUBreakIterator(const com::sun::star::
switch
(
nWordType
)
{
switch
(
nWordType
)
{
case
WordType
:
:
ANY_WORD
:
break
;
// odd but previous behavior
case
WordType
:
:
ANY_WORD
:
break
;
// odd but previous behavior
case
WordType
:
:
ANYWORD_IGNOREWHITESPACES
:
case
WordType
:
:
ANYWORD_IGNOREWHITESPACES
:
breakType
=
0
;
rule
=
wordRule
=
"edit_word"
;
break
;
breakType
=
0
;
rule
=
"edit_word"
;
break
;
case
WordType
:
:
DICTIONARY_WORD
:
case
WordType
:
:
DICTIONARY_WORD
:
breakType
=
1
;
rule
=
wordRule
=
"dict_word"
;
break
;
breakType
=
1
;
rule
=
"dict_word"
;
break
;
default
:
default
:
case
WordType
:
:
WORD_COUNT
:
case
WordType
:
:
WORD_COUNT
:
breakType
=
2
;
rule
=
wordRule
=
"count_word"
;
break
;
breakType
=
2
;
rule
=
"count_word"
;
break
;
}
}
break
;
break
;
case
LOAD_SENTENCE_BREAKITERATOR
:
icuBI
=&
sentence
;
breakType
=
5
;
break
;
case
LOAD_SENTENCE_BREAKITERATOR
:
icuBI
=&
sentence
;
breakType
=
5
;
break
;
...
...
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