From 929e08a3d6bbc4ea16be69b732a3df5191e66474 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Wed, 8 May 2013 08:24:33 +0200 Subject: Fix since version of new metatype conversion functions. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Icedd0942eaef9bdcf034d747f0a03a00ca461a95 Reviewed-by: Jędrzej Nowacki --- src/corelib/kernel/qmetatype.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/corelib/kernel/qmetatype.cpp') diff --git a/src/corelib/kernel/qmetatype.cpp b/src/corelib/kernel/qmetatype.cpp index fe7cc53181..5551880e30 100644 --- a/src/corelib/kernel/qmetatype.cpp +++ b/src/corelib/kernel/qmetatype.cpp @@ -478,14 +478,14 @@ Q_GLOBAL_STATIC(QMetaTypeConversionRegistry, customTypesConversionRegistry) /*! \fn bool QMetaType::registerConverter() - \since 5.1 + \since 5.2 Registers the possibility of an implicit conversion from type From to type To in the meta type system. Returns true if the registration succeeded, otherwise false. */ /*! \fn bool QMetaType::registerConverter(MemberFunction function) - \since 5.1 + \since 5.2 \overload Registers a method \a function like To From::function() const as converter from type From to type To in the meta type system. Returns true if the registration succeeded, otherwise false. @@ -493,7 +493,7 @@ Q_GLOBAL_STATIC(QMetaTypeConversionRegistry, customTypesConversionRegistry) /*! \fn bool QMetaType::registerConverter(MemberFunctionOk function) - \since 5.1 + \since 5.2 \overload Registers a method \a function like To From::function(bool *ok) const as converter from type From to type To in the meta type system. Returns true if the registration succeeded, otherwise false. @@ -501,7 +501,7 @@ Q_GLOBAL_STATIC(QMetaTypeConversionRegistry, customTypesConversionRegistry) /*! \fn bool QMetaType::registerConverter(UnaryFunction function) - \since 5.1 + \since 5.2 \overload Registers a unary function object \a function as converter from type From to type To in the meta type system. Returns true if the registration succeeded, otherwise false. @@ -511,7 +511,7 @@ Q_GLOBAL_STATIC(QMetaTypeConversionRegistry, customTypesConversionRegistry) Registers function \a f as converter function from type id \a from to \a to. If there's already a conversion registered, this does nothing but deleting \a f. Returns true if the registration succeeded, otherwise false. - \since 5.1 + \since 5.2 \internal */ bool QMetaType::registerConverterFunction(QtPrivate::AbstractConverterFunction *f, int from, int to) @@ -529,7 +529,7 @@ bool QMetaType::registerConverterFunction(QtPrivate::AbstractConverterFunction * /*! Converts the object at \a from from \a fromTypeId to the preallocated space at \a to typed \a toTypeId. Returns true, if the conversion succeeded, otherwise false. - \since 5.1 + \since 5.2 */ bool QMetaType::convert(const void *from, int fromTypeId, void *to, int toTypeId) { @@ -540,14 +540,14 @@ bool QMetaType::convert(const void *from, int fromTypeId, void *to, int toTypeId /*! \fn bool QMetaType::hasRegisteredConverterFunction() Returns true, if the meta type system has a registered conversion from type From to type To. - \since 5.1 + \since 5.2 \overload */ /*! Returns true, if the meta type system has a registered conversion from meta type id \a fromTypeId to \a toTypeId - \since 5.1 + \since 5.2 */ bool QMetaType::hasRegisteredConverterFunction(int fromTypeId, int toTypeId) { -- cgit v1.2.3