summaryrefslogtreecommitdiffstats
path: root/ksim/monitors/mail/ksimmail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksim/monitors/mail/ksimmail.cpp')
-rw-r--r--ksim/monitors/mail/ksimmail.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/ksim/monitors/mail/ksimmail.cpp b/ksim/monitors/mail/ksimmail.cpp
index fdda6bd..260ad8e 100644
--- a/ksim/monitors/mail/ksimmail.cpp
+++ b/ksim/monitors/mail/ksimmail.cpp
@@ -66,13 +66,13 @@ void MailPlugin::showAbout()
KAboutApplication( &about ).exec();
}
-MailView::MailView( KSim::PluginObject* parent, const char* name )
- : KSim::PluginView( parent, name )
+MailView::MailView( KSim::PluginObject* tqparent, const char* name )
+ : KSim::PluginView( tqparent, name )
{
- TQVBoxLayout* layout = new TQVBoxLayout( this );
+ TQVBoxLayout* tqlayout = new TQVBoxLayout( this );
MailLabel* label = new MailLabel( this );
- layout->addWidget( label, 0, AlignHCenter );
+ tqlayout->addWidget( label, 0, AlignHCenter );
}
MailView::~MailView()
@@ -87,8 +87,8 @@ void MailView::updateDisplay()
{
}
-MailLabel::MailLabel( TQWidget* parent )
- : KSim::Label( KSim::Types::Mail, parent )
+MailLabel::MailLabel( TQWidget* tqparent )
+ : KSim::Label( KSim::Types::Mail, tqparent )
{
// label->setPixmap( KSim::ThemeLoader::self().current().krellMail() );
configureObject( false );
@@ -101,7 +101,7 @@ MailLabel::~MailLabel()
{
}
-void MailLabel::configureObject( bool repaint )
+void MailLabel::configureObject( bool tqrepaint )
{
m_envelope.load( themeLoader().current().mailPixmap() );
m_frames = themeLoader().current().mailFrames();
@@ -112,7 +112,7 @@ void MailLabel::configureObject( bool repaint )
setPixmap( frame( m_envelope, 1 ) );
- KSim::Label::configureObject( repaint );
+ KSim::Label::configureObject( tqrepaint );
}
void MailLabel::paintEvent( TQPaintEvent* e )
@@ -131,17 +131,17 @@ TQPixmap MailLabel::frame( const TQPixmap& source, int number ) const
{
TQPixmap result( source.width(), source.height() / m_frames );
bitBlt( &result, 0, 0, &source, 0, number * source.height() / m_frames );
- if ( source.mask() )
+ if ( source.tqmask() )
{
- TQBitmap mask( result.size() );
- bitBlt( &mask, 0, 0, source.mask(), 0, number * source.height() / m_frames );
- result.setMask( mask );
+ TQBitmap tqmask( result.size() );
+ bitBlt( &tqmask, 0, 0, source.tqmask(), 0, number * source.height() / m_frames );
+ result.setMask( tqmask );
}
return result;
}
-MailConfig::MailConfig( KSim::PluginObject* parent, const char* name )
- : KSim::PluginPage( parent, name )
+MailConfig::MailConfig( KSim::PluginObject* tqparent, const char* name )
+ : KSim::PluginPage( tqparent, name )
{
}