mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 11:22:58 +00:00
mark some helper functions as static and variables as const
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
6dd7238a82
commit
a05e01b205
3 changed files with 7 additions and 7 deletions
|
@ -51,7 +51,7 @@
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
// must be kept in sync with the moc
|
// must be kept in sync with the moc
|
||||||
static int qmetaobjectrevision = 6;
|
static const int qmetaobjectrevision = 6;
|
||||||
|
|
||||||
class QDBusMetaObjectGenerator
|
class QDBusMetaObjectGenerator
|
||||||
{
|
{
|
||||||
|
|
|
@ -68,7 +68,7 @@ QT_BEGIN_NAMESPACE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// copied from moc's generator.cpp
|
// copied from moc's generator.cpp
|
||||||
uint qvariant_nameToType(const char* name)
|
static uint qvariant_nameToType(const char* name)
|
||||||
{
|
{
|
||||||
if (!name)
|
if (!name)
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -83,7 +83,7 @@ uint qvariant_nameToType(const char* name)
|
||||||
/*
|
/*
|
||||||
Returns true if the type is a QVariant types.
|
Returns true if the type is a QVariant types.
|
||||||
*/
|
*/
|
||||||
bool isVariantType(const char* type)
|
static bool isVariantType(const char* type)
|
||||||
{
|
{
|
||||||
return qvariant_nameToType(type) != 0;
|
return qvariant_nameToType(type) != 0;
|
||||||
}
|
}
|
||||||
|
@ -94,8 +94,8 @@ inline const QMetaObjectPrivate *priv(const uint* data)
|
||||||
|
|
||||||
// must be kept in sync with the moc
|
// must be kept in sync with the moc
|
||||||
// Number of fields in the QMetaObjectPrivate.
|
// Number of fields in the QMetaObjectPrivate.
|
||||||
const static int qmetaobjectindex = 14;
|
static const int qmetaobjectindex = 14;
|
||||||
const static int qmetaobjectrevision = 6;
|
static const int qmetaobjectrevision = 6;
|
||||||
|
|
||||||
class QMetaMethodBuilderPrivate
|
class QMetaMethodBuilderPrivate
|
||||||
{
|
{
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
uint qvariant_nameToType(const char* name)
|
static uint qvariant_nameToType(const char* name)
|
||||||
{
|
{
|
||||||
if (!name)
|
if (!name)
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -55,7 +55,7 @@ uint qvariant_nameToType(const char* name)
|
||||||
/*
|
/*
|
||||||
Returns true if the type is a QVariant types.
|
Returns true if the type is a QVariant types.
|
||||||
*/
|
*/
|
||||||
bool isVariantType(const char* type)
|
static bool isVariantType(const char* type)
|
||||||
{
|
{
|
||||||
return qvariant_nameToType(type) != 0;
|
return qvariant_nameToType(type) != 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue