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
f53cbe59
Kaydet (Commit)
f53cbe59
authored
Nis 07, 2013
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some cppcheck cleaning
Change-Id: I07ef58fd99bc9fc4fd601570b59f9a3581824aa9
üst
41ac8040
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
8 deletions
+3
-8
xfstylecont.cxx
lotuswordpro/source/filter/xfilter/xfstylecont.cxx
+1
-2
fileview.cxx
svtools/source/contnr/fileview.cxx
+1
-4
txtedt.cxx
sw/source/core/txtnode/txtedt.cxx
+1
-2
No files found.
lotuswordpro/source/filter/xfilter/xfstylecont.cxx
Dosyayı görüntüle @
f53cbe59
...
...
@@ -71,9 +71,8 @@ XFStyleContainer::XFStyleContainer(const OUString& strStyleNamePrefix)
}
XFStyleContainer
::
XFStyleContainer
(
const
XFStyleContainer
&
other
)
:
IXFObject
(
other
),
m_strStyleNamePrefix
(
other
.
m_strStyleNamePrefix
)
m_
aStyles
(
other
.
m_aStyles
),
m_
strStyleNamePrefix
(
other
.
m_strStyleNamePrefix
)
{
this
->
m_aStyles
=
other
.
m_aStyles
;
}
XFStyleContainer
&
XFStyleContainer
::
operator
=
(
const
XFStyleContainer
&
other
)
...
...
svtools/source/contnr/fileview.cxx
Dosyayı görüntüle @
f53cbe59
...
...
@@ -1036,11 +1036,10 @@ void ViewTabListBox_Impl::DoQuickSearch( const sal_Unicode& rChar )
OUString
aLastText
=
maQuickSearchText
;
sal_uInt32
aLastPos
=
mnSearchIndex
;
sal_Bool
bFound
=
sal_False
;
maQuickSearchText
+=
OUString
(
rChar
).
toAsciiLowerCase
();
bFound
=
mpParent
->
SearchNextEntry
(
mnSearchIndex
,
maQuickSearchText
,
sal_False
);
sal_Bool
bFound
=
mpParent
->
SearchNextEntry
(
mnSearchIndex
,
maQuickSearchText
,
sal_False
);
if
(
!
bFound
&&
(
aLastText
.
getLength
()
==
1
)
&&
(
aLastText
==
OUString
(
rChar
)
)
)
...
...
@@ -1060,8 +1059,6 @@ void ViewTabListBox_Impl::DoQuickSearch( const sal_Unicode& rChar )
SetCurEntry
(
pEntry
);
MakeVisible
(
pEntry
);
}
else
bFound
=
sal_False
;
}
maResetQuickSearch
.
Start
();
...
...
sw/source/core/txtnode/txtedt.cxx
Dosyayı görüntüle @
f53cbe59
...
...
@@ -1281,8 +1281,7 @@ SwRect SwTxtFrm::_AutoSpell( const SwCntntNode* pActNode, const SwViewOption& rV
// within the word
LanguageType
eActLang
=
aScanner
.
GetCurrentLanguage
();
sal_Bool
bSpell
=
sal_True
;
bSpell
=
xSpell
.
is
()
?
xSpell
->
hasLanguage
(
eActLang
)
:
sal_False
;
sal_Bool
bSpell
=
xSpell
.
is
()
?
xSpell
->
hasLanguage
(
eActLang
)
:
sal_False
;
if
(
bSpell
&&
rWord
.
Len
()
>
0
)
{
// check for: bAlter => xHyphWord.is()
...
...
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