diff options
Diffstat (limited to 'tools/designer/uic/embed.cpp')
| -rw-r--r-- | tools/designer/uic/embed.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/designer/uic/embed.cpp b/tools/designer/uic/embed.cpp index aa4597d34..0a89ca533 100644 --- a/tools/designer/uic/embed.cpp +++ b/tools/designer/uic/embed.cpp @@ -150,7 +150,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima out << "\n"; TQPtrList<EmbedImage> list_image; - list_image.setAutoDelete( TRUE ); + list_image.setAutoDelete( true ); int image_count = 0; for ( it = images.begin(); it != images.end(); ++it ) { TQImage img; @@ -217,9 +217,9 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima else out << "0, "; if ( e->alpha ) - out << "TRUE, "; + out << "true, "; else - out << "FALSE, "; + out << "false, "; out << "\"" << e->name << "\" },\n"; e = list_image.next(); } @@ -258,7 +258,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima " );\n" #endif " if ( embed_image_vec[i].alpha )\n" - " img.setAlphaBuffer(TRUE);\n" + " img.setAlphaBuffer(true);\n" " return img;\n" " }\n" " }\n" |
