diff options
author | Michele Calgaro <[email protected]> | 2025-01-22 18:06:07 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 22:58:51 +0900 |
commit | a1304520200eb5596854e7d4ee9019093a271769 (patch) | |
tree | 0e92d1c79e99732875e53b38cd67d2bfe5c221a5 /src/app/playDialog.cpp | |
parent | fc0e59180568a65a158f8a356679315fee818544 (diff) | |
download | codeine-a1304520200eb5596854e7d4ee9019093a271769.tar.gz codeine-a1304520200eb5596854e7d4ee9019093a271769.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/app/playDialog.cpp')
-rw-r--r-- | src/app/playDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/playDialog.cpp b/src/app/playDialog.cpp index 8c40520..bcb03b1 100644 --- a/src/app/playDialog.cpp +++ b/src/app/playDialog.cpp @@ -25,7 +25,7 @@ namespace Codeine { PlayDialog::PlayDialog( TQWidget *parent, bool be_welcome_dialog ) : TQDialog( parent ) { - setCaption( kapp->makeStdCaption( i18n("Play Media") ) ); + setCaption( tdeApp->makeStdCaption( i18n("Play Media") ) ); TQSignalMapper *mapper = new TQSignalMapper( this ); TQWidget *o, *closeButton = new KPushButton( KStdGuiItem::close(), this ); @@ -59,7 +59,7 @@ PlayDialog::PlayDialog( TQWidget *parent, bool be_welcome_dialog ) if( be_welcome_dialog ) { TQWidget *w = new KPushButton( KStdGuiItem::quit(), this ); hbox->addWidget( w ); - connect( w, TQ_SIGNAL(clicked()), kapp, TQ_SLOT(quit()) ); + connect( w, TQ_SIGNAL(clicked()), tdeApp, TQ_SLOT(quit()) ); } hbox->addWidget( closeButton ); |