summaryrefslogtreecommitdiffstats
path: root/src/arkollon
diff options
context:
space:
mode:
Diffstat (limited to 'src/arkollon')
-rw-r--r--src/arkollon/data.cpp8
-rw-r--r--src/arkollon/uninstallwizard.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/arkollon/data.cpp b/src/arkollon/data.cpp
index d99c295..ee49b46 100644
--- a/src/arkollon/data.cpp
+++ b/src/arkollon/data.cpp
@@ -8,9 +8,9 @@ static struct EmbedImage {
bool alpha;
const char *name;
} embed_image_vec[] = {
- { 16, 16, 32, (const unsigned char*)misc_data, 0, 0, TRUE, "misc" },
- { 130, 300, 32, (const unsigned char*)splash_data, 0, 0, FALSE, "splash" },
- { 32, 32, 32, (const unsigned char*)packageIcon_data, 0, 0, TRUE, "packageIcon" },
+ { 16, 16, 32, (const unsigned char*)misc_data, 0, 0, true, "misc" },
+ { 130, 300, 32, (const unsigned char*)splash_data, 0, 0, false, "splash" },
+ { 32, 32, 32, (const unsigned char*)packageIcon_data, 0, 0, true, "packageIcon" },
{ 0, 0, 0, 0, 0, 0, 0, 0 }
};
@@ -29,7 +29,7 @@ const TQImage& qembed_findImage( const TQString& name )
embed_image_vec[i].numColors,
TQImage::BigEndian );
if ( embed_image_vec[i].alpha )
- img->setAlphaBuffer( TRUE );
+ img->setAlphaBuffer( true );
dict.insert( name, img );
break;
}
diff --git a/src/arkollon/uninstallwizard.h b/src/arkollon/uninstallwizard.h
index c6b0366..e373e65 100644
--- a/src/arkollon/uninstallwizard.h
+++ b/src/arkollon/uninstallwizard.h
@@ -49,7 +49,7 @@ class UninstallWizard : public WizardBase
TQ_OBJECT
public:
- UninstallWizard(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
+ UninstallWizard(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
~UninstallWizard();
public slots: