summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/bibliography')
-rw-r--r--extensions/source/bibliography/bibview.cxx7
-rw-r--r--extensions/source/bibliography/formcontrolcontainer.cxx3
-rw-r--r--extensions/source/bibliography/general.cxx3
3 files changed, 4 insertions, 9 deletions
diff --git a/extensions/source/bibliography/bibview.cxx b/extensions/source/bibliography/bibview.cxx
index ae993379c67f..04f4f5e2698f 100644
--- a/extensions/source/bibliography/bibview.cxx
+++ b/extensions/source/bibliography/bibview.cxx
@@ -90,10 +90,7 @@ namespace bib
else
xResUpd->updateRow();
}
- catch( const uno::Exception& rEx)
- {
- (void) rEx;
- }
+ catch( const uno::Exception&) {}
}
}
@@ -217,4 +214,4 @@ namespace bib
} // namespace bib
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/extensions/source/bibliography/formcontrolcontainer.cxx b/extensions/source/bibliography/formcontrolcontainer.cxx
index d0d7576af413..8019a772bdb0 100644
--- a/extensions/source/bibliography/formcontrolcontainer.cxx
+++ b/extensions/source/bibliography/formcontrolcontainer.cxx
@@ -98,9 +98,8 @@ namespace bib
ControlModeSwitch( _bDesign )
);
}
- catch( const Exception& e)
+ catch( const Exception&)
{
- (void) e; // make compiler happy
OSL_FAIL( "FormControlContainer::implSetDesignMode: caught an exception!" );
}
}
diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx
index 9eccfef67a0d..8c14735756b2 100644
--- a/extensions/source/bibliography/general.cxx
+++ b/extensions/source/bibliography/general.cxx
@@ -517,9 +517,8 @@ uno::Reference< awt::XControlModel > BibGeneralPage::AddXControl(
}
}
}
- catch(const Exception& rEx)
+ catch(const Exception&)
{
- (void) rEx; // make compiler happy
OSL_FAIL("BibGeneralPage::AddXControl: something went wrong!");
}
return xCtrModel;