summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-12 12:28:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-12 12:28:50 +0200
commit5acb6ad0fede608bc77a5430bb67b72c2244f383 (patch)
treeabe16068bfba3abd4e4e2b0c40363cdc05c7d8bb /editeng
parent6a0757f0e0fb4fe4b837f44b2bc9ca6455fa1c5d (diff)
warning C4101: 'e' : unreferenced local variable
Change-Id: I31372075311e45b7b772ff057aedf4c5f1d0ed18
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/flditem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/flditem.cxx b/editeng/source/items/flditem.cxx
index 70fe69274e5c..0f4e2aeab093 100644
--- a/editeng/source/items/flditem.cxx
+++ b/editeng/source/items/flditem.cxx
@@ -50,7 +50,7 @@ SvxFieldData* SvxFieldData::Create(const uno::Reference<text::XTextContent>& xTe
aAny = xPropSet->getPropertyValue(UNO_TC_PROP_TEXTFIELD_TYPE);
if ( !aAny.has<sal_Int32>() )
return NULL;
- } catch ( const beans::UnknownPropertyException& e )
+ } catch ( const beans::UnknownPropertyException& )
{
return NULL;
}