diff options
Diffstat (limited to 'korganizer/plugins/exchange/exchange.cpp')
-rw-r--r-- | korganizer/plugins/exchange/exchange.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/korganizer/plugins/exchange/exchange.cpp b/korganizer/plugins/exchange/exchange.cpp index e84ae08ba..dc4dfe4ca 100644 --- a/korganizer/plugins/exchange/exchange.cpp +++ b/korganizer/plugins/exchange/exchange.cpp @@ -69,10 +69,10 @@ Exchange::Exchange(KOrg::MainWindow *parent, const char *name) : setXMLFile("plugins/exchangeui.rc"); - new KAction(i18n("&Download..."), 0, this, TQT_SLOT(download()), + new TDEAction(i18n("&Download..."), 0, this, TQT_SLOT(download()), actionCollection(), "exchange_download"); - KAction *action = new KAction(i18n("&Upload Event..."), 0, this, TQT_SLOT(upload()), + TDEAction *action = new TDEAction(i18n("&Upload Event..."), 0, this, TQT_SLOT(upload()), actionCollection(), "exchange_upload"); TQObject::connect(mainWindow()->view(),TQT_SIGNAL(incidenceSelected(Incidence *)), this, TQT_SLOT(slotIncidenceSelected(Incidence *))); @@ -80,13 +80,13 @@ Exchange::Exchange(KOrg::MainWindow *parent, const char *name) : TQObject::connect(this,TQT_SIGNAL(enableIncidenceActions(bool)), action,TQT_SLOT(setEnabled(bool))); - action = new KAction(i18n("De&lete Event"), 0, this, TQT_SLOT(remove()), + action = new TDEAction(i18n("De&lete Event"), 0, this, TQT_SLOT(remove()), actionCollection(), "exchange_delete"); TQObject::connect(this,TQT_SIGNAL(enableIncidenceActions(bool)), action,TQT_SLOT(setEnabled(bool))); action->setEnabled( false ); - new KAction(i18n("&Configure..."), 0, this, TQT_SLOT(configure()), + new TDEAction(i18n("&Configure..."), 0, this, TQT_SLOT(configure()), actionCollection(), "exchange_configure"); connect( this, TQT_SIGNAL( calendarChanged() ), mainWindow()->view(), TQT_SLOT( updateView() ) ); |