summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-14 21:02:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 21:02:40 +0100
commitab5d1fbfb4956ec431dbceb6b4cc65f7b12e5c5f (patch)
tree9a8a9a87526b4da881a364dd557ea9002e6a6b5b /extensions
parentbcd594902c366443f0d17b7599267793ac6da204 (diff)
SAL_WARN_UNUSED com::sun::star::uno::Any
Change-Id: I9058044d13f696e07667dce706f6c311af6dbea0
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/eventhandler.cxx1
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.cxx1
-rw-r--r--extensions/source/update/feed/updatefeed.cxx2
3 files changed, 1 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/eventhandler.cxx b/extensions/source/propctrlr/eventhandler.cxx
index 6b157f9701c8..29f4d0c0d460 100644
--- a/extensions/source/propctrlr/eventhandler.cxx
+++ b/extensions/source/propctrlr/eventhandler.cxx
@@ -435,7 +435,6 @@ namespace pcr
{
ScriptEventDescriptor aDescriptor( impl_getDescriptor_throw( _rName ) );
- Any aRet;
Sequence< PropertyValue > aScriptDescriptor( 2 );
aScriptDescriptor[0].Name = "EventType";
aScriptDescriptor[0].Value <<= aDescriptor.ScriptType;
diff --git a/extensions/source/propctrlr/formcomponenthandler.cxx b/extensions/source/propctrlr/formcomponenthandler.cxx
index ca9d93b1fef4..56e63367b02a 100644
--- a/extensions/source/propctrlr/formcomponenthandler.cxx
+++ b/extensions/source/propctrlr/formcomponenthandler.cxx
@@ -1708,7 +1708,6 @@ namespace pcr
OSL_VERIFY( _rNewValue >>= bUseSep );
// propagate the changes to the min/max/default fields
- Any aCurrentProp;
OUString aAffectedProps[] = { OUString(PROPERTY_VALUE), OUString(PROPERTY_DEFAULT_VALUE), OUString(PROPERTY_VALUEMIN), OUString(PROPERTY_VALUEMAX) };
for (sal_uInt16 i=0; i<SAL_N_ELEMENTS(aAffectedProps); ++i)
{
diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx
index 4faaf17bb39c..223decab3997 100644
--- a/extensions/source/update/feed/updatefeed.cxx
+++ b/extensions/source/update/feed/updatefeed.cxx
@@ -457,7 +457,7 @@ UpdateInformationProvider::load(const OUString& rURL)
storeCommandInfo(nCommandId, xCommandProcessor);
try
{
- uno::Any aResult = xCommandProcessor->execute(aCommand, nCommandId,
+ xCommandProcessor->execute(aCommand, nCommandId,
static_cast < XCommandEnvironment *> (this));
}
catch( const uno::Exception & /* e */ )