summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-02 18:37:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-02 18:40:15 +0200
commit38e9686b5b2ea6341d5494ce5fe7bbc64d4c3011 (patch)
treeeac92c41e69dcd3ec53e3eee7671e486277e4025 /extensions
parentf22ffca56406de75efff9da988d5709648c32164 (diff)
-Werror,-Wunused-variable
Change-Id: I57cb3540cb94dcf39252a87b56cba3856cba9c01
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/check/updatecheckconfig.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/extensions/source/update/check/updatecheckconfig.cxx b/extensions/source/update/check/updatecheckconfig.cxx
index 799d6e6e63d9..79a23ca647de 100644
--- a/extensions/source/update/check/updatecheckconfig.cxx
+++ b/extensions/source/update/check/updatecheckconfig.cxx
@@ -611,13 +611,11 @@ UpdateCheckConfig::commitChanges()
xChangesBatch = uno::Reference< util::XChangesBatch > ( m_xAvailableUpdates, uno::UNO_QUERY );
if( xChangesBatch.is() && xChangesBatch->hasPendingChanges() )
{
- util::ChangesSet aChangesSet = xChangesBatch->getPendingChanges();
xChangesBatch->commitChanges();
}
xChangesBatch = uno::Reference< util::XChangesBatch > ( m_xIgnoredUpdates, uno::UNO_QUERY );
if( xChangesBatch.is() && xChangesBatch->hasPendingChanges() )
{
- util::ChangesSet aChangesSet = xChangesBatch->getPendingChanges();
xChangesBatch->commitChanges();
}
}