diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kdeui/kxmlguifactory.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 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 0a1b30deb..fa534e093 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 tqcontains the rules for how to merge the + * KActionCollection . The XML document contains 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 TQObject +class KDEUI_EXPORT KXMLGUIFactory : public QObject { friend class KXMLGUI::BuildHelper; Q_OBJECT @@ -103,7 +103,7 @@ class KDEUI_EXPORT KXMLGUIFactory : public TQObject * Find or create the element for a given action, by name. * Used when saving custom action properties */ - static TQDomElement tqfindActionByName( TQDomElement& elem, const TQString& sName, bool create ); + static TQDomElement findActionByName( 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 TQObject private: - TQWidget *tqfindRecursive( KXMLGUI::ContainerNode *node, bool tag ); + TQWidget *findRecursive( KXMLGUI::ContainerNode *node, bool tag ); - TQPtrList<TQWidget> tqfindRecursive( KXMLGUI::ContainerNode *node, const TQString &tagName ); + TQPtrList<TQWidget> findRecursive( KXMLGUI::ContainerNode *node, const TQString &tagName ); void applyActionProperties( const TQDomElement &element ); void configureAction( KAction *action, const TQDomNamedNodeMap &attributes ); |