diff options
Diffstat (limited to 'src/moc/moc_yacc.cpp')
-rw-r--r-- | src/moc/moc_yacc.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/moc/moc_yacc.cpp b/src/moc/moc_yacc.cpp index d7f661fea..46a5cfe28 100644 --- a/src/moc/moc_yacc.cpp +++ b/src/moc/moc_yacc.cpp @@ -303,8 +303,8 @@ static const char* const type_map[ntypes] = "TQBitArray", "TQKeySequence", "TQPen", - "Q_LLONG", - "Q_ULLONG" + "TQ_LLONG", + "TQ_ULLONG" }; int qvariant_nameToType( const char* name ) @@ -493,9 +493,9 @@ struct Property } else if ( type == "TQValueList" ) { type = "TQValueList<TQVariant>"; } else if ( type == "LongLong" ) { - type = "Q_LLONG"; + type = "TQ_LLONG"; } else if ( type == "ULongLong" ) { - type = "Q_ULLONG"; + type = "TQ_ULLONG"; } } @@ -6243,9 +6243,9 @@ void generateClass() // generate C++ source code for a class fprintf( out, "v->asMap()" ); else if ( type == "TQValueList<TQVariant>" ) fprintf( out, "v->asList()" ); - else if ( type == "Q_LLONG" ) + else if ( type == "TQ_LLONG" ) fprintf( out, "v->asLongLong()" ); - else if ( type == "Q_ULLONG" ) + else if ( type == "TQ_ULLONG" ) fprintf( out, "v->asULongLong()" ); else if ( isVariantType( type ) ) { if (( type[0] == 'T' ) && ( type[1] == 'Q' )) |