summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/package/dp_extbackenddb.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:13:53 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:22 +0100
commit72c48b716640c76f0a8fa49341ce3b0099004991 (patch)
tree6aa8da1631e3d18272bd39ab55111885ab339b45 /desktop/source/deployment/registry/package/dp_extbackenddb.cxx
parent89c4edc13f203db1641c63e22774262bbe61f36f (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I8204a300c98b891a842ef2e40b65f0810dd7817a
Diffstat (limited to 'desktop/source/deployment/registry/package/dp_extbackenddb.cxx')
-rw-r--r--desktop/source/deployment/registry/package/dp_extbackenddb.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/registry/package/dp_extbackenddb.cxx b/desktop/source/deployment/registry/package/dp_extbackenddb.cxx
index 4d1b6ffd8c5f..0e2f7e2220fc 100644
--- a/desktop/source/deployment/registry/package/dp_extbackenddb.cxx
+++ b/desktop/source/deployment/registry/package/dp_extbackenddb.cxx
@@ -83,7 +83,7 @@ void ExtensionBackendDb::addEntry(OUString const & url, Data const & data)
Any exc( ::cppu::getCaughtException() );
throw css::deployment::DeploymentException(
"Extension Manager: failed to write data entry in backend db: " +
- m_urlDb, 0, exc);
+ m_urlDb, nullptr, exc);
}
}
@@ -107,7 +107,7 @@ ExtensionBackendDb::Data ExtensionBackendDb::getEntry(OUString const & url)
Any exc( ::cppu::getCaughtException() );
throw css::deployment::DeploymentException(
"Extension Manager: failed to read data entry in backend db: " +
- m_urlDb, 0, exc);
+ m_urlDb, nullptr, exc);
}
}