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
79faad75
Kaydet (Commit)
79faad75
authored
Nis 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More loplugin:simplifybool
Change-Id: Ica40d21d8fd4cab37b6ba561be77d3db53d75e72
üst
46fdbbfe
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
svimpbox.cxx
svtools/source/contnr/svimpbox.cxx
+1
-1
ServerDetailsControls.cxx
svtools/source/dialogs/ServerDetailsControls.cxx
+1
-1
exportdialog.cxx
svtools/source/filter/exportdialog.cxx
+1
-1
paneltabbar.cxx
svtools/source/toolpanel/paneltabbar.cxx
+1
-1
No files found.
svtools/source/contnr/svimpbox.cxx
Dosyayı görüntüle @
79faad75
...
@@ -2105,7 +2105,7 @@ void SvImpLBox::MouseButtonDown( const MouseEvent& rMEvt )
...
@@ -2105,7 +2105,7 @@ void SvImpLBox::MouseButtonDown( const MouseEvent& rMEvt )
else
else
{
{
// CheckButton? (TreeListBox: Check + Info)
// CheckButton? (TreeListBox: Check + Info)
if
(
ButtonDownCheckCtrl
(
rMEvt
,
pEntry
,
nY
)
==
true
)
if
(
ButtonDownCheckCtrl
(
rMEvt
,
pEntry
,
nY
)
)
return
;
return
;
// Inplace-Editing?
// Inplace-Editing?
}
}
...
...
svtools/source/dialogs/ServerDetailsControls.cxx
Dosyayı görüntüle @
79faad75
...
@@ -174,7 +174,7 @@ IMPL_LINK( DavDetailsContainer, ToggledDavsHdl, CheckBox*, pCheckBox )
...
@@ -174,7 +174,7 @@ IMPL_LINK( DavDetailsContainer, ToggledDavsHdl, CheckBox*, pCheckBox )
bool
bCheckedDavs
=
pCheckBox
->
IsChecked
();
bool
bCheckedDavs
=
pCheckBox
->
IsChecked
();
if
(
m_pEDPort
->
GetValue
()
==
80
&&
bCheckedDavs
)
if
(
m_pEDPort
->
GetValue
()
==
80
&&
bCheckedDavs
)
m_pEDPort
->
SetValue
(
443
);
m_pEDPort
->
SetValue
(
443
);
else
if
(
m_pEDPort
->
GetValue
()
==
443
&&
bCheckedDavs
==
false
)
else
if
(
m_pEDPort
->
GetValue
()
==
443
&&
!
bCheckedDavs
)
m_pEDPort
->
SetValue
(
80
);
m_pEDPort
->
SetValue
(
80
);
OUString
sScheme
(
"http"
);
OUString
sScheme
(
"http"
);
...
...
svtools/source/filter/exportdialog.cxx
Dosyayı görüntüle @
79faad75
...
@@ -326,7 +326,7 @@ uno::Sequence< beans::PropertyValue > ExportDialog::GetFilterData( bool bUpdateC
...
@@ -326,7 +326,7 @@ uno::Sequence< beans::PropertyValue > ExportDialog::GetFilterData( bool bUpdateC
}
}
uno
::
Sequence
<
beans
::
PropertyValue
>
aRet
(
pFilterOptions
->
GetFilterData
()
);
uno
::
Sequence
<
beans
::
PropertyValue
>
aRet
(
pFilterOptions
->
GetFilterData
()
);
if
(
bUpdateConfig
==
false
)
if
(
!
bUpdateConfig
)
delete
pFilterOptions
;
delete
pFilterOptions
;
return
aRet
;
return
aRet
;
}
}
...
...
svtools/source/toolpanel/paneltabbar.cxx
Dosyayı görüntüle @
79faad75
...
@@ -813,7 +813,7 @@ namespace svt
...
@@ -813,7 +813,7 @@ namespace svt
void
PanelTabBar_Impl
::
EnsureItemsCache
()
void
PanelTabBar_Impl
::
EnsureItemsCache
()
{
{
if
(
m_bItemsDirty
==
false
)
if
(
!
m_bItemsDirty
)
{
{
DBG_CHECK
(
*
this
);
DBG_CHECK
(
*
this
);
return
;
return
;
...
...
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