summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2023-04-12 00:26:41 +0200
committerThorsten Behrens <thorsten.behrens@allotropia.de>2023-04-20 13:14:37 +0200
commit890bf59e0a3507b009284d81632a3381fbe9a70f (patch)
treef290198ff0276446bce37153d1fb8f0d0b2397dd /framework/source
parentb167bc073b6b83110242bfbace107f6978e5bca7 (diff)
Run clang-tidy with misc-unused-using-decls on modules [d-o]*
To remove unneeded using declarations. Via the simple script: for i in $(find $dirname -name "*cxx" -o -name "*hxx" ); do clang-tidy-12 --checks="-*,misc-unused-using-decls" "$i"; done Change-Id: Idd8aa3d3cfec456c4babb65e89af712051b4deb0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150609 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/fwe/helper/documentundoguard.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/framework/source/fwe/helper/documentundoguard.cxx b/framework/source/fwe/helper/documentundoguard.cxx
index 0a027921817a..f578d8682731 100644
--- a/framework/source/fwe/helper/documentundoguard.cxx
+++ b/framework/source/fwe/helper/documentundoguard.cxx
@@ -31,7 +31,6 @@ namespace framework
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::XInterface;
using ::com::sun::star::uno::UNO_QUERY;
- using ::com::sun::star::uno::UNO_QUERY_THROW;
using ::com::sun::star::uno::Exception;
using ::com::sun::star::document::XUndoManagerSupplier;
using ::com::sun::star::document::XUndoManager;