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
9796e52a
Kaydet (Commit)
9796e52a
authored
Nis 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:simplifybool
Change-Id: I56557cd02bbb97d3c3aa4053608cf2dd48c35e7a
üst
40b16e07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
configvaluecontainer.cxx
unotools/source/config/configvaluecontainer.cxx
+1
-1
searchopt.cxx
unotools/source/config/searchopt.cxx
+1
-1
No files found.
unotools/source/config/configvaluecontainer.cxx
Dosyayı görüntüle @
9796e52a
...
@@ -234,7 +234,7 @@ namespace utl
...
@@ -234,7 +234,7 @@ namespace utl
_rConfigLocation
,
_rConfigLocation
,
_nLevels
,
_nLevels
,
(
_nAccessFlags
&
CVC_UPDATE_ACCESS
)
?
OConfigurationTreeRoot
::
CM_UPDATABLE
:
OConfigurationTreeRoot
::
CM_READONLY
,
(
_nAccessFlags
&
CVC_UPDATE_ACCESS
)
?
OConfigurationTreeRoot
::
CM_UPDATABLE
:
OConfigurationTreeRoot
::
CM_READONLY
,
(
_nAccessFlags
&
CVC_IMMEDIATE_UPDATE
)
?
false
:
true
(
_nAccessFlags
&
CVC_IMMEDIATE_UPDATE
)
==
0
);
);
SAL_WARN_IF
(
!
m_pImpl
->
aConfigRoot
.
isValid
(),
"unotools.config"
,
SAL_WARN_IF
(
!
m_pImpl
->
aConfigRoot
.
isValid
(),
"unotools.config"
,
"Could not access the configuration node located at "
<<
_rConfigLocation
);
"Could not access the configuration node located at "
<<
_rConfigLocation
);
...
...
unotools/source/config/searchopt.cxx
Dosyayı görüntüle @
9796e52a
...
@@ -91,7 +91,7 @@ void SvtSearchOptions_Impl::Notify( const Sequence< OUString >& )
...
@@ -91,7 +91,7 @@ void SvtSearchOptions_Impl::Notify( const Sequence< OUString >& )
bool
SvtSearchOptions_Impl
::
GetFlag
(
sal_uInt16
nOffset
)
const
bool
SvtSearchOptions_Impl
::
GetFlag
(
sal_uInt16
nOffset
)
const
{
{
DBG_ASSERT
(
nOffset
<=
MAX_FLAGS_OFFSET
,
"offset out of range"
);
DBG_ASSERT
(
nOffset
<=
MAX_FLAGS_OFFSET
,
"offset out of range"
);
return
((
nFlags
>>
nOffset
)
&
0x01
)
?
true
:
false
;
return
((
nFlags
>>
nOffset
)
&
0x01
)
!=
0
;
}
}
void
SvtSearchOptions_Impl
::
SetFlag
(
sal_uInt16
nOffset
,
bool
bVal
)
void
SvtSearchOptions_Impl
::
SetFlag
(
sal_uInt16
nOffset
,
bool
bVal
)
...
...
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