summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/picasawebexport
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:09:15 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:09:15 -0600
commit9f3512f9756e14e9c0a71340f6891b4a263611d3 (patch)
tree4f9e97149a32884cca6b0ceafdeab118a38fece2 /kipi-plugins/picasawebexport
parentaeb252235dc0e8ee062396fd8a04916dba7ba977 (diff)
downloadkipi-plugins-9f3512f9756e14e9c0a71340f6891b4a263611d3.tar.gz
kipi-plugins-9f3512f9756e14e9c0a71340f6891b4a263611d3.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kipi-plugins/picasawebexport')
-rw-r--r--kipi-plugins/picasawebexport/plugin_picasawebexport.cpp4
-rw-r--r--kipi-plugins/picasawebexport/plugin_picasawebexport.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/picasawebexport/plugin_picasawebexport.cpp b/kipi-plugins/picasawebexport/plugin_picasawebexport.cpp
index 541877a..512a232 100644
--- a/kipi-plugins/picasawebexport/plugin_picasawebexport.cpp
+++ b/kipi-plugins/picasawebexport/plugin_picasawebexport.cpp
@@ -63,7 +63,7 @@ void Plugin_PicasawebExport::setup(TQWidget* widget)
{
KIPI::Plugin::setup(widget);
- m_action = new KAction(i18n("Export to Picasaweb..."),
+ m_action = new TDEAction(i18n("Export to Picasaweb..."),
"www",
0,
this,
@@ -104,7 +104,7 @@ void Plugin_PicasawebExport::slotActivate()
m_dlg->show();
}
-KIPI::Category Plugin_PicasawebExport::category( KAction* action ) const
+KIPI::Category Plugin_PicasawebExport::category( TDEAction* action ) const
{
if (action == m_action)
return KIPI::EXPORTPLUGIN;
diff --git a/kipi-plugins/picasawebexport/plugin_picasawebexport.h b/kipi-plugins/picasawebexport/plugin_picasawebexport.h
index bf78a8c..584e25a 100644
--- a/kipi-plugins/picasawebexport/plugin_picasawebexport.h
+++ b/kipi-plugins/picasawebexport/plugin_picasawebexport.h
@@ -31,7 +31,7 @@
#include "picasawebwindow.h"
-class KAction;
+class TDEAction;
using namespace KIPIPicasawebExportPlugin;
@@ -45,7 +45,7 @@ public:
Plugin_PicasawebExport(TQObject *parent, const char* name, const TQStringList &args);
~Plugin_PicasawebExport();
- virtual KIPI::Category category(KAction* action) const;
+ virtual KIPI::Category category(TDEAction* action) const;
virtual void setup(TQWidget*);
public slots:
@@ -55,7 +55,7 @@ public slots:
private:
PicasawebWindow *m_dlg;
- KAction *m_action;
+ TDEAction *m_action;
};
#endif // PLUGIN_PICASAWEBEXPORT_H