loplugin:defaultparams

Change-Id: Id6ceb78985e9578ea952a37988a7f7655e2f1a12
This commit is contained in:
Stephan Bergmann
2015-10-19 17:49:45 +02:00
parent 578f267a38
commit f36de37597
2 changed files with 4 additions and 4 deletions

View File

@@ -752,7 +752,7 @@ long ExtMgrDialog::addPackageToList( const uno::Reference< deployment::XPackage
{
const SolarMutexGuard aGuard;
m_pUpdateBtn->Enable(true);
m_pUpdateBtn->Enable();
m_pExtensionBox->removeEntry(xPackage);
@@ -1229,7 +1229,7 @@ long UpdateRequiredDialog::addPackageToList( const uno::Reference< deployment::X
{
m_bHasLockedEntries |= m_pManager->isReadOnly( xPackage );
const SolarMutexGuard aGuard;
m_pUpdateBtn->Enable( true );
m_pUpdateBtn->Enable();
return m_pExtensionBox->addEntry( xPackage );
}
return 0;

View File

@@ -217,7 +217,7 @@ LicenseDialogImpl::LicenseDialogImpl(
get(m_pDown, "down");
get(m_pAcceptButton, "accept");
get(m_pDeclineButton, "decline");
m_pArrow1->Show(true);
m_pArrow1->Show();
m_pArrow2->Show(false);
get(m_pLicense, "textview");
@@ -289,7 +289,7 @@ IMPL_LINK_NOARG_TYPED(LicenseDialogImpl, EndReachedHdl, LicenseView&, void)
m_pAcceptButton->Enable();
m_pAcceptButton->GrabFocus();
m_pArrow1->Show(false);
m_pArrow2->Show(true);
m_pArrow2->Show();
m_bLicenseRead = true;
}