summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/galleryexport/plugin_galleryexport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/galleryexport/plugin_galleryexport.cpp')
-rw-r--r--kipi-plugins/galleryexport/plugin_galleryexport.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/galleryexport/plugin_galleryexport.cpp b/kipi-plugins/galleryexport/plugin_galleryexport.cpp
index 917dcc8..d277096 100644
--- a/kipi-plugins/galleryexport/plugin_galleryexport.cpp
+++ b/kipi-plugins/galleryexport/plugin_galleryexport.cpp
@@ -74,7 +74,7 @@ void Plugin_GalleryExport::setup(TQWidget* widget)
// Add our directory in to the icon loader dirs.
TDEGlobal::iconLoader()->addAppDir("kipiplugin_galleryexport");
- m_action_sync = new KAction(i18n("Remote Gallery Sync..."),
+ m_action_sync = new TDEAction(i18n("Remote Gallery Sync..."),
0,
this,
TQT_SLOT(slotSync()),
@@ -83,7 +83,7 @@ void Plugin_GalleryExport::setup(TQWidget* widget)
m_action_sync->setEnabled(true);
addAction(m_action_sync);
- m_action_configure = new KAction(i18n("Remote Galleries..."),
+ m_action_configure = new TDEAction(i18n("Remote Galleries..."),
0,
this,
TQT_SLOT(slotConfigure()),
@@ -92,7 +92,7 @@ void Plugin_GalleryExport::setup(TQWidget* widget)
m_action_configure->setEnabled(true);
addAction(m_action_configure);
/*
- m_action_collection_settings = new KAction(i18n("Remote Gallery Settings..."),
+ m_action_collection_settings = new TDEAction(i18n("Remote Gallery Settings..."),
0,
this,
TQT_SLOT(slotCollectionSettings()),
@@ -101,7 +101,7 @@ void Plugin_GalleryExport::setup(TQWidget* widget)
m_action_collection_settings->setEnabled(true);
addAction(m_action_collection_settings);
- m_action_image_setting = new KAction(i18n("Remote Gallery Settings..."),
+ m_action_image_setting = new TDEAction(i18n("Remote Gallery Settings..."),
0,
this,
TQT_SLOT(slotImageSettings()),
@@ -170,7 +170,7 @@ void Plugin_GalleryExport::slotImageSettings()
KMessageBox::error(TQT_TQWIDGET(kapp->activeWindow()), "Not Implemented Yet!");
}
-KIPI::Category Plugin_GalleryExport::category( KAction* action ) const
+KIPI::Category Plugin_GalleryExport::category( TDEAction* action ) const
{
if (action == m_action_sync)
return KIPI::EXPORTPLUGIN;