From 1175ec444f2453fc773f288f1087fe6bdad340c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Nowacki?= Date: Fri, 3 Feb 2012 13:46:24 +0100 Subject: Fix a typo TypeDefiniton -> TypeDefinition. If you repeat a typo often enough, it becomes the right spelling. But 49 times is definitely not enough :-) Change-Id: I7c0bb29e68e4bff5c67277f9874df8b3ab8b2b54 Reviewed-by: Kent Hansen --- src/corelib/kernel/qmetatype.cpp | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'src/corelib/kernel/qmetatype.cpp') diff --git a/src/corelib/kernel/qmetatype.cpp b/src/corelib/kernel/qmetatype.cpp index c914c65126..fa3398b6bf 100644 --- a/src/corelib/kernel/qmetatype.cpp +++ b/src/corelib/kernel/qmetatype.cpp @@ -79,40 +79,40 @@ QT_BEGIN_NAMESPACE namespace { template -struct TypeDefiniton { +struct TypeDefinition { static const bool IsAvailable = true; }; struct DefinedTypesFilter { template struct Acceptor { - static const bool IsAccepted = TypeDefiniton::IsAvailable && QTypeModuleInfo::IsCore; + static const bool IsAccepted = TypeDefinition::IsAvailable && QTypeModuleInfo::IsCore; }; }; // Ignore these types, as incomplete #ifdef QT_NO_GEOM_VARIANT -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; #endif #ifdef QT_BOOTSTRAPPED -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; #endif #ifdef QT_NO_REGEXP -template<> struct TypeDefiniton { static const bool IsAvailable = false; }; +template<> struct TypeDefinition { static const bool IsAvailable = false; }; #endif } // namespace -- cgit v1.2.3