summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-22 18:07:56 +0900
committerMichele Calgaro <[email protected]>2025-01-22 18:07:56 +0900
commit243b4fd0e4ff449db8db4762eb6a6c1522973f28 (patch)
treef4c7d13821a4c281cbf4d2288ac5e922153bc191
parent67cf5e5013e33e2f38f749f957220251ec590638 (diff)
downloadk9copy-243b4fd0e4ff449db8db4762eb6a6c1522973f28.tar.gz
k9copy-243b4fd0e4ff449db8db4762eb6a6c1522973f28.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r--k9author/k9importfiles.cpp2
-rw-r--r--src/k9copy.cpp2
-rw-r--r--src/k9mencodercmdgen.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/k9author/k9importfiles.cpp b/k9author/k9importfiles.cpp
index 8674eb0..e654c01 100644
--- a/k9author/k9importfiles.cpp
+++ b/k9author/k9importfiles.cpp
@@ -21,7 +21,7 @@
k9ImportFiles::k9ImportFiles(TQWidget *parent, const char *name)
: KMdiMainFrm( parent, name ,KMdi::IDEAlMode )
{
- this->setCaption(kapp->makeStdCaption(i18n("Create new DVD"),true));
+ this->setCaption(tdeApp->makeStdCaption(i18n("Create new DVD"),true));
m_k9Import=new k9Import(this);
m_k9ImportView=createWrapper( m_k9Import,"","");
addWindow(m_k9ImportView, KMdi::StandardAdd);
diff --git a/src/k9copy.cpp b/src/k9copy.cpp
index 273a90d..86e77a3 100644
--- a/src/k9copy.cpp
+++ b/src/k9copy.cpp
@@ -498,7 +498,7 @@ void k9Copy::saveDock() {
void k9Copy::closeEvent( TQCloseEvent* ce ) {
saveDock();
ce->accept();
- kapp->quit();
+ tdeApp->quit();
}
KDockWidget* k9Copy::getVisibleDock() {
diff --git a/src/k9mencodercmdgen.cpp b/src/k9mencodercmdgen.cpp
index 938e30f..c7ae8fb 100644
--- a/src/k9mencodercmdgen.cpp
+++ b/src/k9mencodercmdgen.cpp
@@ -52,7 +52,7 @@ void _k9CheckListItem::stateChange(bool _state) {
k9MencoderCmdGen::k9MencoderCmdGen(TQWidget* parent, const TQString &_cmd, bool modal, WFlags fl)
: MyDialog1(parent,"", modal,fl)
{
- setCaption(kapp->makeStdCaption(i18n("MEncoder options")));
+ setCaption(tdeApp->makeStdCaption(i18n("MEncoder options")));
m_row=0; m_page=1;
loadXml();
parseCmd(_cmd);