summaryrefslogtreecommitdiffstats
path: root/tdeui/kxmlguifactory_p.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:13:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:13:01 -0600
commitdeac2ca49faed824fe83066080714eb6d653615b (patch)
tree8b5bf97c5acaaf5285985b87fa76dbea0f35e4fa /tdeui/kxmlguifactory_p.h
parent0c9d97065a3d6ceb12d687555a1a33d90db96238 (diff)
downloadtdelibs-deac2ca49faed824fe83066080714eb6d653615b.tar.gz
tdelibs-deac2ca49faed824fe83066080714eb6d653615b.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'tdeui/kxmlguifactory_p.h')
-rw-r--r--tdeui/kxmlguifactory_p.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdeui/kxmlguifactory_p.h b/tdeui/kxmlguifactory_p.h
index dc263b677..769d674c8 100644
--- a/tdeui/kxmlguifactory_p.h
+++ b/tdeui/kxmlguifactory_p.h
@@ -36,21 +36,21 @@ namespace KXMLGUI
struct BuildState;
-class TDEUI_EXPORT ActionList : public TQPtrList<KAction>
+class TDEUI_EXPORT ActionList : public TQPtrList<TDEAction>
{
public:
ActionList() {}
- ActionList( const TQPtrList<KAction> &rhs )
- : TQPtrList<KAction>( rhs )
+ ActionList( const TQPtrList<TDEAction> &rhs )
+ : TQPtrList<TDEAction>( rhs )
{}
- ActionList &operator=( const TQPtrList<KAction> &rhs )
- { TQPtrList<KAction>::operator=( rhs ); return *this; }
+ ActionList &operator=( const TQPtrList<TDEAction> &rhs )
+ { TQPtrList<TDEAction>::operator=( rhs ); return *this; }
void plug( TQWidget *container, int index ) const;
void unplug( TQWidget *container ) const;
};
-typedef TQPtrListIterator<KAction> ActionListIt;
+typedef TQPtrListIterator<TDEAction> ActionListIt;
typedef TQMap< TQString, ActionList > ActionListMap;
/*