diff --git a/kdecore/services/kmimetyperepository.cpp b/kdecore/services/kmimetyperepository.cpp index 21ad7a3f..d3a82744 100644 --- a/kdecore/services/kmimetyperepository.cpp +++ b/kdecore/services/kmimetyperepository.cpp @@ -313,7 +313,7 @@ QStringList KMimeTypeRepository::parents(const QString& mime) const QString derivedTypeNameStr = QString::fromLatin1(derivedTypeName.constData(), derivedTypeName.size()); KMimeType::Ptr derivedType = findMimeTypeByName(derivedTypeNameStr, KMimeType::ResolveAliases); if (!derivedType) - kWarning(7012) << fileName << " refers to unknown mimetype " << derivedTypeNameStr; + kWarning(7021) << fileName << " refers to unknown mimetype " << derivedTypeNameStr; else { const QByteArray parentTypeName = line.mid(pos+1); const QString parentTypeNameStr = QString::fromLatin1(parentTypeName.constData(), parentTypeName.size()); diff --git a/kded/kbuildservicefactory.cpp b/kded/kbuildservicefactory.cpp index 43fb134b..b35c3fee 100644 --- a/kded/kbuildservicefactory.cpp +++ b/kded/kbuildservicefactory.cpp @@ -102,7 +102,7 @@ KSycocaEntry* KBuildServiceFactory::createEntry( const QString& file, const char return serv; } else { if (!serv->isDeleted()) { - kWarning(7012) << "Invalid Service : " << file; + kWarning(7021) << "Invalid Service : " << file; } delete serv; return 0; diff --git a/kded/kbuildservicetypefactory.cpp b/kded/kbuildservicetypefactory.cpp index a3189e97..9f735a86 100644 --- a/kded/kbuildservicetypefactory.cpp +++ b/kded/kbuildservicetypefactory.cpp @@ -77,14 +77,14 @@ KSycocaEntry* KBuildServiceTypeFactory::createEntry(const QString &file, const c const QString type = desktopGroup.readEntry( "Type" ); if ( type != QLatin1String( "ServiceType" ) ) { - kWarning(7012) << "The service type config file " << desktopFile.fileName() << " has Type=" << type << " instead of Type=ServiceType"; + kWarning(7021) << "The service type config file " << desktopFile.fileName() << " has Type=" << type << " instead of Type=ServiceType"; return 0; } const QString serviceType = desktopGroup.readEntry( "X-KDE-ServiceType" ); if ( serviceType.isEmpty() ) { - kWarning(7012) << "The service type config file " << desktopFile.fileName() << " does not contain a ServiceType=... entry"; + kWarning(7021) << "The service type config file " << desktopFile.fileName() << " does not contain a ServiceType=... entry"; return 0; } @@ -96,7 +96,7 @@ KSycocaEntry* KBuildServiceTypeFactory::createEntry(const QString &file, const c } if ( !(e->isValid()) ) { - kWarning(7012) << "Invalid ServiceType : " << file; + kWarning(7021) << "Invalid ServiceType : " << file; delete e; return 0; }