From bf080115bac322b177ffcf1e15aff4de1d742b4c Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 29 Apr 2013 19:06:50 +0200 Subject: include: convert type scope="foo"> here too sed -i 's,\([^<]\+\),\1::\2,g' Change-Id: I7eb32acd44132de79cc7ac1e7f78b43bb4814d14 --- include/comphelper/componentbase.hxx | 2 +- include/comphelper/componentcontext.hxx | 2 +- include/comphelper/enumhelper.hxx | 10 +++++----- include/comphelper/interaction.hxx | 2 +- include/comphelper/listenernotification.hxx | 4 ++-- include/comphelper/logging.hxx | 2 +- include/comphelper/mediadescriptor.hxx | 2 +- include/comphelper/officeresourcebundle.hxx | 2 +- include/comphelper/propertycontainerhelper.hxx | 2 +- include/comphelper/sequenceashashmap.hxx | 4 ++-- include/comphelper/sequenceasvector.hxx | 4 ++-- include/comphelper/streamsection.hxx | 4 ++-- include/comphelper/types.hxx | 2 +- include/connectivity/dbtools.hxx | 14 +++++++------- include/connectivity/sqlerror.hxx | 12 ++++++------ include/svtools/genericunodialog.hxx | 8 ++++---- include/svtools/imageresourceaccess.hxx | 4 ++-- include/svx/dataaccessdescriptor.hxx | 2 +- include/toolkit/controls/geometrycontrolmodel.hxx | 4 ++-- include/unotools/componentresmodule.hxx | 2 +- include/unotools/desktopterminationobserver.hxx | 2 +- include/unotools/streamsection.hxx | 4 ++-- include/unotools/streamwrap.hxx | 10 +++++----- include/xmloff/formlayerexport.hxx | 4 ++-- 24 files changed, 54 insertions(+), 54 deletions(-) diff --git a/include/comphelper/componentbase.hxx b/include/comphelper/componentbase.hxx index b4035a60f77b..d3043e7ac697 100644 --- a/include/comphelper/componentbase.hxx +++ b/include/comphelper/componentbase.hxx @@ -37,7 +37,7 @@ namespace comphelper /** creates a ComponentBase instance The instance is not initialized. As a consequence, every ComponentMethodGuard instantiated for - this component will throw a NotInitializedException, + this component will throw a com::sun::star::lang::NotInitializedException, until ->setInitialized() is called. */ ComponentBase( ::cppu::OBroadcastHelper& _rBHelper ) diff --git a/include/comphelper/componentcontext.hxx b/include/comphelper/componentcontext.hxx index d6461502be54..ce2f58302445 100644 --- a/include/comphelper/componentcontext.hxx +++ b/include/comphelper/componentcontext.hxx @@ -52,7 +52,7 @@ namespace comphelper /** constructs an instance @param _rxLegacyFactory - the legacy service factor to obtain the XComponentContext from + the legacy service factor to obtain the com::sun::star::uno::XComponentContext from @throws ::com::sun::star::uno::RuntimeException if the given factory or does not have a DefaultContext property to obtain a component context diff --git a/include/comphelper/enumhelper.hxx b/include/comphelper/enumhelper.hxx index 9870291b22f5..27b20c20fd24 100644 --- a/include/comphelper/enumhelper.hxx +++ b/include/comphelper/enumhelper.hxx @@ -51,8 +51,8 @@ struct OEnumerationLock //================================================================== //= OEnumerationByName //================================================================== -/** provides an XEnumeration access based - on an object implementing the XNameAccess interface +/** provides an com.sun.star.container::XEnumeration access based + on an object implementing the com.sun.star.container::XNameAccess interface */ class COMPHELPER_DLLPUBLIC OEnumerationByName : private OEnumerationLock , public ::cppu::WeakImplHelper2< starcontainer::XEnumeration , @@ -83,8 +83,8 @@ private: //================================================================== //= OEnumerationByIndex //================================================================== -/** provides an XEnumeration access based - on an object implementing the XNameAccess interface +/** provides an com.sun.star.container::XEnumeration access based + on an object implementing the com.sun.star.container::XNameAccess interface */ class COMPHELPER_DLLPUBLIC OEnumerationByIndex : private OEnumerationLock , public ::cppu::WeakImplHelper2< starcontainer::XEnumeration , @@ -112,7 +112,7 @@ private: //================================================================== //= OAnyEnumeration //================================================================== -/** provides an XEnumeration +/** provides an com.sun.star.container::XEnumeration for an outside set vector of Any's. */ diff --git a/include/comphelper/interaction.hxx b/include/comphelper/interaction.hxx index bbd925efd3fa..d72cc2119c4a 100644 --- a/include/comphelper/interaction.hxx +++ b/include/comphelper/interaction.hxx @@ -131,7 +131,7 @@ namespace comphelper //========================================================================= typedef ::cppu::WeakImplHelper1 < ::com::sun::star::task::XInteractionRequest > OInteractionRequest_Base; - /** implements an interaction request (XInteractionRequest)

+ /** implements an interaction request (com.sun.star.task::XInteractionRequest)

at run time, you can freely add any interaction continuation objects */ class COMPHELPER_DLLPUBLIC OInteractionRequest : public OInteractionRequest_Base diff --git a/include/comphelper/listenernotification.hxx b/include/comphelper/listenernotification.hxx index 21e2ea74723b..73c3e7875e47 100644 --- a/include/comphelper/listenernotification.hxx +++ b/include/comphelper/listenernotification.hxx @@ -160,9 +160,9 @@ namespace comphelper This class is not threadsafe! @param LISTENER - the listener class to call, e.g. XEventListener + the listener class to call, e.g. com::sun::star::lang::XEventListener @param EVENT - the event type to notify, e.g. EventObject + the event type to notify, e.g. com::sun::star::lang::EventObject */ template< class LISTENER, class EVENT > class OSimpleListenerContainer : protected OListenerContainer diff --git a/include/comphelper/logging.hxx b/include/comphelper/logging.hxx index b6356384af3d..4601527a949f 100644 --- a/include/comphelper/logging.hxx +++ b/include/comphelper/logging.hxx @@ -67,7 +67,7 @@ namespace comphelper class EventLogger_Impl; typedef ::boost::optional< OUString > OptionalString; - /** encapsulates an XLogger + /** encapsulates an com::sun::star::logging::XLogger The class silences several (unlikely) errors which could potentially happen when working with a logger. Additionally, it provides some convenience methods diff --git a/include/comphelper/mediadescriptor.hxx b/include/comphelper/mediadescriptor.hxx index 7c7174644292..dbd59dc77f68 100644 --- a/include/comphelper/mediadescriptor.hxx +++ b/include/comphelper/mediadescriptor.hxx @@ -30,7 +30,7 @@ namespace com { namespace sun { namespace star { namespace io { namespace comphelper{ -/** @short can be used to work with a MediaDescriptor +/** @short can be used to work with a ::com::sun::star::document::MediaDescriptor struct. @descr It wraps a ::boost::unordered_map around the Sequence< css::beans::PropertyValue >, which diff --git a/include/comphelper/officeresourcebundle.hxx b/include/comphelper/officeresourcebundle.hxx index 5e6d9e1bccc5..a326a59d219b 100644 --- a/include/comphelper/officeresourcebundle.hxx +++ b/include/comphelper/officeresourcebundle.hxx @@ -36,7 +36,7 @@ namespace comphelper //= OfficeResourceBundle //==================================================================== class ResourceBundle_Impl; - /** wraps the OfficeResourceAccess service + /** wraps the com::sun::star::resource::OfficeResourceAccess service */ class COMPHELPER_DLLPUBLIC OfficeResourceBundle { diff --git a/include/comphelper/propertycontainerhelper.hxx b/include/comphelper/propertycontainerhelper.hxx index dacefd8737a6..1afccff5e84d 100644 --- a/include/comphelper/propertycontainerhelper.hxx +++ b/include/comphelper/propertycontainerhelper.hxx @@ -38,7 +38,7 @@ struct COMPHELPER_DLLPUBLIC PropertyDescription enum LocationType { ltDerivedClassRealType, // within the derived class, it's a "real" (non-Any) type - ltDerivedClassAnyType, // within the derived class, it's a Any + ltDerivedClassAnyType, // within the derived class, it's a com.sun.star.uno::Any ltHoldMyself // within m_aHoldProperties }; // the location of an object holding a property value : diff --git a/include/comphelper/sequenceashashmap.hxx b/include/comphelper/sequenceashashmap.hxx index 0c8353776931..c649326f2fbc 100644 --- a/include/comphelper/sequenceashashmap.hxx +++ b/include/comphelper/sequenceashashmap.hxx @@ -99,7 +99,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase @param aSource contains the new items for this map. - @throw An IllegalTypeException + @throw An com::sun::star::beans::IllegalTypeException is thrown, if the given any does not contain a suitable sequence ... but not if its a VOID Any! */ @@ -114,7 +114,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase @param lSource contains the new items for this map. - @throw An IllegalTypeException + @throw An com::sun::star::beans::IllegalTypeException is thrown, if the given any sequence uses wrong types for its items. VOID Any will be ignored! */ diff --git a/include/comphelper/sequenceasvector.hxx b/include/comphelper/sequenceasvector.hxx index 305eba9245ff..c186debc8e71 100644 --- a/include/comphelper/sequenceasvector.hxx +++ b/include/comphelper/sequenceasvector.hxx @@ -108,7 +108,7 @@ class SequenceAsVector : public ::std::vector< TElementType > @param aSource this any must contain a suitable sequence. :-) - @throw A IllegalTypeException + @throw A com::sun::star::beans::IllegalTypeException if an unsupported element inside this Any is given. An empty Any reset this instance! */ @@ -147,7 +147,7 @@ class SequenceAsVector : public ::std::vector< TElementType > @param aSource this any must contain a suitable sequence. :-) - @throw A IllegalTypeException + @throw A com::sun::star::beans::IllegalTypeException if an unsupported element inside this Any is given. An empty Any reset this instance! */ diff --git a/include/comphelper/streamsection.hxx b/include/comphelper/streamsection.hxx index 40ea508f888b..8f5657aff502 100644 --- a/include/comphelper/streamsection.hxx +++ b/include/comphelper/streamsection.hxx @@ -51,13 +51,13 @@ class COMPHELPER_DLLPUBLIC OStreamSection public: /** starts reading of a "skippable" section of data within the given input stream
@param _rxInput the stream to read from. Must support the - XMarkableStream interface + com::sun::star::io::XMarkableStream interface */ OStreamSection(const staruno::Reference< stario::XDataInputStream >& _rxInput); /** starts writing of a "skippable" section of data into the given output stream @param _rxOutput the stream the stream to write to. Must support the - XMarkableStream interface + com::sun::star::io::XMarkableStream interface @param _nPresumedLength estimation for the length of the upcoming section. If greater 0, this value will be written as section length and corrected (in the dtor) only if needed. If you know how much bytes you are about to write, you may diff --git a/include/comphelper/types.hxx b/include/comphelper/types.hxx index 66c6a9e0bcfb..f9a1506e88c6 100644 --- a/include/comphelper/types.hxx +++ b/include/comphelper/types.hxx @@ -135,7 +135,7 @@ namespace comphelper */ COMPHELPER_DLLPUBLIC starawt::FontDescriptor getDefaultFont(); - /** examine a sequence for the Type of it's elements. + /** examine a sequence for the com.sun.star.uno::Type of it's elements. */ COMPHELPER_DLLPUBLIC staruno::Type getSequenceElementType(const staruno::Type& _rSequenceType); diff --git a/include/connectivity/dbtools.hxx b/include/connectivity/dbtools.hxx index 9706af6ccb1c..424237316382 100644 --- a/include/connectivity/dbtools.hxx +++ b/include/connectivity/dbtools.hxx @@ -222,9 +222,9 @@ namespace dbtools /** get fields for a result set given by a "command descriptor"

A command descriptor here means: -