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
510f056d
Kaydet (Commit)
510f056d
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: If4b4f706152876e8b5631343fc7e39eeaa04964b
üst
756a9325
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
dp_gui_extensioncmdqueue.cxx
desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
+1
-1
dp_gui_extlistbox.cxx
desktop/source/deployment/gui/dp_gui_extlistbox.cxx
+1
-1
dp_gui_updateinstalldialog.cxx
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+1
-1
dp_commandenvironments.cxx
desktop/source/deployment/manager/dp_commandenvironments.cxx
+1
-1
dp_update.cxx
desktop/source/deployment/misc/dp_update.cxx
+2
-2
dp_package.cxx
desktop/source/deployment/registry/package/dp_package.cxx
+1
-1
No files found.
desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
Dosyayı görüntüle @
510f056d
...
...
@@ -511,7 +511,7 @@ void ProgressCmdEnv::handle( uno::Reference< task::XInteractionRequest > const &
approve
=
true
;
}
if
(
approve
==
false
&&
abort
==
false
)
if
(
!
approve
&&
!
abort
)
{
// forward to UUI handler:
if
(
!
m_xHandler
.
is
())
{
...
...
desktop/source/deployment/gui/dp_gui_extlistbox.cxx
Dosyayı görüntüle @
510f056d
...
...
@@ -1180,7 +1180,7 @@ void ExtensionBox_Impl::checkEntries()
ITER
iIndex
=
m_vEntries
.
begin
();
while
(
iIndex
<
m_vEntries
.
end
()
)
{
if
(
(
*
iIndex
)
->
m_bChecked
==
false
)
if
(
!
(
*
iIndex
)
->
m_bChecked
)
{
(
*
iIndex
)
->
m_bChecked
=
true
;
bNeedsUpdate
=
true
;
...
...
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
Dosyayı görüntüle @
510f056d
...
...
@@ -657,7 +657,7 @@ void UpdateCommandEnv::handle(
approve
=
true
;
}
if
(
approve
==
fals
e
)
if
(
!
approv
e
)
{
//forward to interaction handler for main dialog.
handleInteractionRequest
(
m_xContext
,
xRequest
);
...
...
desktop/source/deployment/manager/dp_commandenvironments.cxx
Dosyayı görüntüle @
510f056d
...
...
@@ -76,7 +76,7 @@ void BaseCommandEnv::handle(
void
BaseCommandEnv
::
handle_
(
bool
approve
,
bool
abort
,
Reference
<
task
::
XInteractionRequest
>
const
&
xRequest
)
{
if
(
approve
==
false
&&
abort
==
false
)
if
(
!
approve
&&
!
abort
)
{
//not handled so far -> forwarding
if
(
m_forwardHandler
.
is
())
...
...
desktop/source/deployment/misc/dp_update.cxx
Dosyayı görüntüle @
510f056d
...
...
@@ -362,7 +362,7 @@ UpdateInfoMap getOnlineUpdateInfos(
std
::
pair
<
UpdateInfoMap
::
iterator
,
bool
>
insertRet
=
infoMap
.
insert
(
UpdateInfoMap
::
value_type
(
dp_misc
::
getIdentifier
(
extension
),
UpdateInfo
(
extension
)));
OSL_ASSERT
(
insertRet
.
second
==
true
);
OSL_ASSERT
(
insertRet
.
second
);
(
void
)
insertRet
;
}
}
...
...
@@ -375,7 +375,7 @@ UpdateInfoMap getOnlineUpdateInfos(
std
::
pair
<
UpdateInfoMap
::
iterator
,
bool
>
insertRet
=
infoMap
.
insert
(
UpdateInfoMap
::
value_type
(
dp_misc
::
getIdentifier
(
*
i
),
UpdateInfo
(
*
i
)));
OSL_ASSERT
(
insertRet
.
second
==
true
);
OSL_ASSERT
(
insertRet
.
second
);
(
void
)
insertRet
;
}
}
...
...
desktop/source/deployment/registry/package/dp_package.cxx
Dosyayı görüntüle @
510f056d
...
...
@@ -706,7 +706,7 @@ bool BackendImpl::PackageImpl::checkLicense(
throw
css
::
deployment
::
DeploymentException
(
"Could not interact with user."
,
0
,
Any
());
if
(
approve
==
true
)
if
(
approve
)
return
true
;
else
return
false
;
...
...
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