diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /kdeui/kxmlguifactory.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kxmlguifactory.h')
-rw-r--r-- | kdeui/kxmlguifactory.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdeui/kxmlguifactory.h b/kdeui/kxmlguifactory.h index fa534e093..0a1b30deb 100644 --- a/kdeui/kxmlguifactory.h +++ b/kdeui/kxmlguifactory.h @@ -52,14 +52,14 @@ class BuildHelper; * and merging the GUI from an unlimited number of clients. * * Each client provides XML through a TQDomDocument and actions through a - * KActionCollection . The XML document contains the rules for how to merge the + * KActionCollection . The XML document tqcontains the rules for how to merge the * GUI. * * KXMLGUIFactory processes the DOM tree provided by a client and plugs in the client's actions, * according to the XML and the merging rules of previously inserted clients. Container widgets * are built via a KXMLGUIBuilder , which has to be provided with the KXMLGUIFactory constructor. */ -class KDEUI_EXPORT KXMLGUIFactory : public QObject +class KDEUI_EXPORT KXMLGUIFactory : public TQObject { friend class KXMLGUI::BuildHelper; Q_OBJECT @@ -103,7 +103,7 @@ class KDEUI_EXPORT KXMLGUIFactory : public QObject * Find or create the element for a given action, by name. * Used when saving custom action properties */ - static TQDomElement findActionByName( TQDomElement& elem, const TQString& sName, bool create ); + static TQDomElement tqfindActionByName( TQDomElement& elem, const TQString& sName, bool create ); /** * Creates the GUI described by the TQDomDocument of the client, @@ -201,9 +201,9 @@ class KDEUI_EXPORT KXMLGUIFactory : public QObject private: - TQWidget *findRecursive( KXMLGUI::ContainerNode *node, bool tag ); + TQWidget *tqfindRecursive( KXMLGUI::ContainerNode *node, bool tag ); - TQPtrList<TQWidget> findRecursive( KXMLGUI::ContainerNode *node, const TQString &tagName ); + TQPtrList<TQWidget> tqfindRecursive( KXMLGUI::ContainerNode *node, const TQString &tagName ); void applyActionProperties( const TQDomElement &element ); void configureAction( KAction *action, const TQDomNamedNodeMap &attributes ); |