diff options
Diffstat (limited to 'kpackage/debAptInterface.cpp')
-rw-r--r-- | kpackage/debAptInterface.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kpackage/debAptInterface.cpp b/kpackage/debAptInterface.cpp index bf922ea..c35013a 100644 --- a/kpackage/debAptInterface.cpp +++ b/kpackage/debAptInterface.cpp @@ -98,26 +98,26 @@ bool DEBAPT::isType(char *, const TQString &) return false; } -void DEBAPT::makeMenu(KActionCollection* act) +void DEBAPT::makeMenu(TDEActionCollection* act) { - updateM = new KAction( i18n("&Update"), TQString(), + updateM = new TDEAction( i18n("&Update"), TQString(), 0, this, TQT_SLOT(updateS()), act, "debapt_update"); - upgradeM = new KAction( i18n("U&pgrade"), TQString(), + upgradeM = new TDEAction( i18n("U&pgrade"), TQString(), 0, this, TQT_SLOT(upgradeS()), act, "debapt_upgrade"); - fixupM = new KAction( i18n("&Fixup"), TQString(), + fixupM = new TDEAction( i18n("&Fixup"), TQString(), 0, this, TQT_SLOT(fixupS()), act, "debapt_fixup"); - fileM = new KAction( i18n("&Apt-File Update"), TQString(), + fileM = new TDEAction( i18n("&Apt-File Update"), TQString(), 0, this, TQT_SLOT(fileS()), act, "debapt_file"); } -void DEBAPT::setMenu(KActionCollection*, bool enable) +void DEBAPT::setMenu(TDEActionCollection*, bool enable) { updateM->setEnabled(enable); upgradeM->setEnabled(enable); |