Formatting: Icon names, headers, Doxygen

This commit is contained in:
Klaus Basan
2014-07-26 23:24:33 +02:00
parent 9cb3663b79
commit ae5c677cfe
27 changed files with 243 additions and 123 deletions

View File

@@ -1,3 +1,12 @@
/* Copyright (C) 2013
* swift Project Community / Contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of Swift Project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
#include "valueobject.h"
#include "indexvariantmap.h"
#include "blackmiscfreefunctions.h"
@@ -79,7 +88,7 @@ namespace BlackMisc
if (ut <= QVariant::UserType) return nullptr; // complex Qt type
if (qv.canConvert<QDBusArgument>()) return nullptr; // not unstreamed yet
// this cast cannot be dynamic, so the aboce conditions are crucical
// this cast cannot be dynamic, so the above conditions are crucical
const CValueObject *vo = static_cast<const CValueObject *>(qv.constData());
return vo;
}