summaryrefslogtreecommitdiffstats
path: root/certmanager/customactions.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
commitfd5d099065a748cac49e20a13481f85666c53c71 (patch)
treea0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /certmanager/customactions.h
parentb440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff)
downloadtdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz
tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'certmanager/customactions.h')
-rw-r--r--certmanager/customactions.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/customactions.h b/certmanager/customactions.h
index 7d8626d60..c07157bd1 100644
--- a/certmanager/customactions.h
+++ b/certmanager/customactions.h
@@ -39,21 +39,21 @@
class TQLineEdit;
-class LabelAction : public KAction {
+class LabelAction : public TDEAction {
Q_OBJECT
public:
- LabelAction( const TQString & text, KActionCollection * parent,
+ LabelAction( const TQString & text, TDEActionCollection * parent,
const char* name );
int plug( TQWidget * widget, int index=-1 );
};
-class LineEditAction : public KAction {
+class LineEditAction : public TDEAction {
Q_OBJECT
public:
- LineEditAction( const TQString & text, KActionCollection * parent,
+ LineEditAction( const TQString & text, TDEActionCollection * parent,
TQObject * receiver, const char * member, const char * name );
int plug( TQWidget * widget, int index=-1 );
@@ -67,11 +67,11 @@ private:
const char * _member;
};
-class ComboAction : public KAction {
+class ComboAction : public TDEAction {
Q_OBJECT
public:
- ComboAction( const TQStringList & lst, KActionCollection * parent,
+ ComboAction( const TQStringList & lst, TDEActionCollection * parent,
TQObject * receiver, const char * member, const char * name,
int selectedID );