summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/gui/dp_gui_updatedialog.cxx')
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedialog.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
index 4090ea05638e..9769a8b3b452 100644
--- a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx
@@ -314,13 +314,13 @@ void UpdateDialog::Thread::execute()
dp_misc::getIdentifier(info.extension), info.extension->getName(),
uno::Reference<ucb::XCommandEnvironment>());
} catch ( const lang::IllegalArgumentException& ) {
- assert(false);
+ OSL_ASSERT(false);
continue;
} catch ( const css::ucb::CommandFailedException& ) {
- assert(false);
+ OSL_ASSERT(false);
continue;
}
- assert(extensions.getLength() == 3);
+ OSL_ASSERT(extensions.getLength() == 3);
if (extensions[0].is() )
sVersionUser = extensions[0]->getVersion();
if (extensions[1].is() )
@@ -393,7 +393,7 @@ void UpdateDialog::Thread::handleSpecificError(
OUString UpdateDialog::Thread::getUpdateDisplayString(
dp_gui::UpdateData const & data, OUString const & version) const
{
- assert(data.aInstalledPackage.is());
+ OSL_ASSERT(data.aInstalledPackage.is());
OUStringBuffer b(data.aInstalledPackage->getDisplayName());
b.append(' ');
{
@@ -429,7 +429,7 @@ void UpdateDialog::Thread::prepareUpdateData(
if (!updateInfo.is())
return;
dp_misc::DescriptionInfoset infoset(m_context, updateInfo);
- assert(!infoset.getVersion().isEmpty());
+ OSL_ASSERT(!infoset.getVersion().isEmpty());
uno::Sequence< uno::Reference< xml::dom::XElement > > ds(
dp_misc::Dependencies::check(infoset));
@@ -526,7 +526,7 @@ UpdateDialog::UpdateDialog(
get(m_pOk, "INSTALL");
get(m_pClose, "gtk-close");
get(m_pHelp, "gtk-help");
- assert(updateData != nullptr);
+ OSL_ASSERT(updateData != nullptr);
m_xExtensionManager = deployment::ExtensionManager::get( context );
@@ -609,7 +609,7 @@ UpdateDialog::CheckListBox::CheckListBox( vcl::Window* pParent, UpdateDialog & d
sal_uInt16 UpdateDialog::CheckListBox::getItemCount() const {
sal_uLong i = GetEntryCount();
- assert(i <= std::numeric_limits< sal_uInt16 >::max());
+ OSL_ASSERT(i <= std::numeric_limits< sal_uInt16 >::max());
return sal::static_int_cast< sal_uInt16 >(i);
}
@@ -704,7 +704,7 @@ sal_uInt16 UpdateDialog::insertItem( UpdateDialog::Index *pEntry, SvLBoxButtonKi
if ( p == pEntry )
return i;
}
- assert(false);
+ OSL_ASSERT(false);
return 0;
}
@@ -933,7 +933,7 @@ bool UpdateDialog::showDescription(uno::Reference< xml::dom::XNode > const & aUp
bool UpdateDialog::showDescription(uno::Reference< deployment::XPackage > const & aExtension)
{
- assert(aExtension.is());
+ OSL_ASSERT(aExtension.is());
beans::StringPair pubInfo = aExtension->getPublisherInfo();
return showDescription(std::make_pair(pubInfo.First, pubInfo.Second),
"");
@@ -1219,7 +1219,7 @@ IMPL_LINK_NOARG(UpdateDialog, selectionHandler, SvTreeListBox*, void)
break;
}
default:
- assert(false);
+ OSL_ASSERT(false);
break;
}
}
@@ -1279,7 +1279,7 @@ IMPL_LINK_NOARG(UpdateDialog, okHandler, Button*, void)
typedef std::vector<UpdateData>::const_iterator CIT;
for (CIT i = m_enabledUpdates.begin(); i < m_enabledUpdates.end(); ++i)
{
- assert(i->aInstalledPackage.is());
+ OSL_ASSERT(i->aInstalledPackage.is());
//If the user has no write access to the shared folder then the update
//for a shared extension is disable, that is it cannot be in m_enabledUpdates
}