diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-04-12 00:28:17 +0200 |
---|---|---|
committer | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-04-21 22:22:33 +0200 |
commit | 36db242816099bdc3ed2573df1230313056c552c (patch) | |
tree | 83f5979118f355b4d86d8faeae0c4dd14441bc69 /xmloff/source/text/XMLAutoTextEventExport.cxx | |
parent | f712c531336b2c44636a35ad682913550640e0d3 (diff) |
Run clang-tidy with misc-unused-using-decls on module xmloff
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: Iccae38de41c809b39345ec6b31c9f6346e620f53
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150611
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
Diffstat (limited to 'xmloff/source/text/XMLAutoTextEventExport.cxx')
-rw-r--r-- | xmloff/source/text/XMLAutoTextEventExport.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLAutoTextEventExport.cxx b/xmloff/source/text/XMLAutoTextEventExport.cxx index 21abaf0a7454..b6a089e8a038 100644 --- a/xmloff/source/text/XMLAutoTextEventExport.cxx +++ b/xmloff/source/text/XMLAutoTextEventExport.cxx @@ -41,7 +41,6 @@ using namespace ::xmloff::token; using ::com::sun::star::container::XNameReplace; using ::com::sun::star::document::XEventsSupplier; -using ::com::sun::star::lang::XMultiServiceFactory; using ::com::sun::star::uno::Any; using ::com::sun::star::uno::Exception; using ::com::sun::star::uno::Reference; |