summaryrefslogtreecommitdiffstats
path: root/amarok/src/amarokcore/crashhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/amarokcore/crashhandler.cpp')
-rw-r--r--amarok/src/amarokcore/crashhandler.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/amarok/src/amarokcore/crashhandler.cpp b/amarok/src/amarokcore/crashhandler.cpp
index 6e34a770..536faceb 100644
--- a/amarok/src/amarokcore/crashhandler.cpp
+++ b/amarok/src/amarokcore/crashhandler.cpp
@@ -265,10 +265,10 @@ namespace Amarok
Amarok::CrashHandlerWidget::CrashHandlerWidget()
{
- TQBoxLayout *tqlayout = new TQHBoxLayout( this, 18, 12 );
+ TQBoxLayout *layout = new TQHBoxLayout( this, 18, 12 );
{
- TQBoxLayout *lay = new TQVBoxLayout( tqlayout );
+ TQBoxLayout *lay = new TQVBoxLayout( layout );
TQLabel *label = new TQLabel( this );
label->setPixmap( locate( "data", "drkonqi/pics/konqi.png" ) );
label->setFrameStyle( TQFrame::Plain | TQFrame::Box );
@@ -276,9 +276,9 @@ Amarok::CrashHandlerWidget::CrashHandlerWidget()
lay->addItem( new TQSpacerItem( 3, 3, TQSizePolicy::Minimum, TQSizePolicy::Expanding ) );
}
- tqlayout = new TQVBoxLayout( tqlayout, 6 );
+ layout = new TQVBoxLayout( layout, 6 );
- tqlayout->add( new TQLabel( /*i18n*/(
+ layout->add( new TQLabel( /*i18n*/(
"<p>" "Amarok has crashed! We are terribly sorry about this :("
"<p>" "However you now have an opportunity to help us fix this crash so that it doesn't "
"happen again! Click <b>Send Email</b> and Amarok will prepare an email that you "
@@ -286,11 +286,11 @@ Amarok::CrashHandlerWidget::CrashHandlerWidget()
"as soon as possible."
"<p>" "Thanks for choosing Amarok.<br>" ), this ) );
- tqlayout = new TQHBoxLayout( tqlayout, 6 );
+ layout = new TQHBoxLayout( layout, 6 );
- tqlayout->addItem( new TQSpacerItem( 6, 6, TQSizePolicy::Expanding ) );
- tqlayout->add( new KPushButton( KGuiItem( i18n("Send Email"), "mail_send" ), this, "email" ) );
- tqlayout->add( new KPushButton( KStdGuiItem::close(), this, "close" ) );
+ layout->addItem( new TQSpacerItem( 6, 6, TQSizePolicy::Expanding ) );
+ layout->add( new KPushButton( KGuiItem( i18n("Send Email"), "mail_send" ), this, "email" ) );
+ layout->add( new KPushButton( KStdGuiItem::close(), this, "close" ) );
static_cast<TQPushButton*>(child("email"))->setDefault( true );