diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-03-24 18:55:11 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-03-27 10:44:44 +0100 |
commit | d9e0eade62b7164e81458a5da7c2aba6f4c77311 (patch) | |
tree | 6d519b24d9ead0c4fbc3a70849ddca703a971710 /comphelper | |
parent | 60a3e721aaf9a9220563d045c2387cb2378e607f (diff) |
Remove unused using declarations in directories [a-d]*
Found with:
run-clang-tidy-7 -checks=-*,misc-unused-using-decls
Change-Id: I50f6dfa881ac4e752668e762ade0943aaf28ab96
Reviewed-on: https://gerrit.libreoffice.org/69601
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/container/enumerablemap.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/misc/accimplaccess.cxx | 3 | ||||
-rw-r--r-- | comphelper/source/misc/docpasswordrequest.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/misc/logging.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/property/ChainablePropertySetInfo.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/property/MasterPropertySetInfo.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/property/propstate.cxx | 1 |
7 files changed, 0 insertions, 12 deletions
diff --git a/comphelper/source/container/enumerablemap.cxx b/comphelper/source/container/enumerablemap.cxx index f17610f13c71..41a26005b44f 100644 --- a/comphelper/source/container/enumerablemap.cxx +++ b/comphelper/source/container/enumerablemap.cxx @@ -50,7 +50,6 @@ namespace comphelper using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::XInterface; using ::com::sun::star::uno::UNO_QUERY; - using ::com::sun::star::uno::Exception; using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::uno::Any; using ::com::sun::star::uno::Sequence; @@ -76,7 +75,6 @@ namespace comphelper using ::com::sun::star::uno::XComponentContext; using ::com::sun::star::container::XEnumeration; using ::com::sun::star::uno::TypeDescription; - using ::com::sun::star::lang::WrappedTargetException; using ::com::sun::star::lang::DisposedException; class MapEnumerator; diff --git a/comphelper/source/misc/accimplaccess.cxx b/comphelper/source/misc/accimplaccess.cxx index 94ac52405517..95a36640d7f8 100644 --- a/comphelper/source/misc/accimplaccess.cxx +++ b/comphelper/source/misc/accimplaccess.cxx @@ -30,10 +30,7 @@ namespace comphelper { - using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::Sequence; - using ::com::sun::star::uno::RuntimeException; - using ::com::sun::star::accessibility::XAccessible; OAccessibleImplementationAccess::OAccessibleImplementationAccess( ) { diff --git a/comphelper/source/misc/docpasswordrequest.cxx b/comphelper/source/misc/docpasswordrequest.cxx index 6b9d55dbc683..e1092df36f0b 100644 --- a/comphelper/source/misc/docpasswordrequest.cxx +++ b/comphelper/source/misc/docpasswordrequest.cxx @@ -28,7 +28,6 @@ using ::com::sun::star::uno::Any; using ::com::sun::star::uno::Reference; -using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::XInterface; using ::com::sun::star::task::InteractionClassification_QUERY; diff --git a/comphelper/source/misc/logging.cxx b/comphelper/source/misc/logging.cxx index 68aa28b2b3ac..5329e8b7200a 100644 --- a/comphelper/source/misc/logging.cxx +++ b/comphelper/source/misc/logging.cxx @@ -34,7 +34,6 @@ namespace comphelper using ::com::sun::star::logging::XLoggerPool; using ::com::sun::star::logging::LoggerPool; using ::com::sun::star::logging::XLogger; - using ::com::sun::star::uno::UNO_QUERY_THROW; using ::com::sun::star::uno::Exception; class EventLogger_Impl diff --git a/comphelper/source/property/ChainablePropertySetInfo.cxx b/comphelper/source/property/ChainablePropertySetInfo.cxx index 37eba79cea09..241826c056c1 100644 --- a/comphelper/source/property/ChainablePropertySetInfo.cxx +++ b/comphelper/source/property/ChainablePropertySetInfo.cxx @@ -22,9 +22,7 @@ using ::comphelper::PropertyInfo; using ::comphelper::ChainablePropertySetInfo; -using ::com::sun::star::uno::Type; using ::com::sun::star::uno::Sequence; -using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::beans::Property; using ::com::sun::star::beans::UnknownPropertyException; diff --git a/comphelper/source/property/MasterPropertySetInfo.cxx b/comphelper/source/property/MasterPropertySetInfo.cxx index fc94d8436ce9..a64f3973c772 100644 --- a/comphelper/source/property/MasterPropertySetInfo.cxx +++ b/comphelper/source/property/MasterPropertySetInfo.cxx @@ -22,9 +22,7 @@ using ::comphelper::PropertyInfo; using ::comphelper::MasterPropertySetInfo; -using ::com::sun::star::uno::Type; using ::com::sun::star::uno::Sequence; -using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::beans::Property; using ::com::sun::star::beans::UnknownPropertyException; diff --git a/comphelper/source/property/propstate.cxx b/comphelper/source/property/propstate.cxx index 89cfa081df3f..cb9df916a027 100644 --- a/comphelper/source/property/propstate.cxx +++ b/comphelper/source/property/propstate.cxx @@ -27,7 +27,6 @@ namespace comphelper using ::com::sun::star::uno::Type; - using ::com::sun::star::uno::RuntimeException; using ::com::sun::star::uno::Sequence; using ::com::sun::star::lang::XTypeProvider; using ::com::sun::star::uno::Any; |