diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
commit | e69e8b1d09fb579316595b4e6a850e717358a8b1 (patch) | |
tree | a24fc20865f65772f530d16177520190594ffdd2 /kpovmodeler/pmparser.h | |
parent | eecec9afb81fdebb0f22e9da22635874c403f854 (diff) | |
download | tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.tar.gz tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.zip |
TQt4 port kdegraphics
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmparser.h')
-rw-r--r-- | kpovmodeler/pmparser.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kpovmodeler/pmparser.h b/kpovmodeler/pmparser.h index e72cbd60..3c48bb49 100644 --- a/kpovmodeler/pmparser.h +++ b/kpovmodeler/pmparser.h @@ -81,13 +81,13 @@ public: * * Appends all parsed objects to the list. * - * parent is the object where the parsed objects will be inserted as - * children behind the object after. These parameters are used to check + * tqparent is the object where the parsed objects will be inserted as + * tqchildren behind the object after. These parameters are used to check * the consistency of declares and links. * - * Set parent and after to 0 if and only if a document is parsed/opened. + * Set tqparent and after to 0 if and only if a document is parsed/opened. */ - void parse( PMObjectList* list, PMObject* parent, + void parse( PMObjectList* list, PMObject* tqparent, PMObject* after ); /** @@ -196,12 +196,12 @@ public: */ PMSymbol* getSymbol( const TQString& id ) const; /** - * Tries to insert obj as child of parent. If parent is 0, the object + * Tries to insert obj as child of tqparent. If tqparent is 0, the object * will be inserted in the list of top level objects. * * Returns true if the object could be inserted. */ - bool insertChild( PMObject* obj, PMObject* parent ); + bool insertChild( PMObject* obj, PMObject* tqparent ); protected: /** @@ -217,8 +217,8 @@ protected: */ PMPart* m_pPart; /** - * parent object where the parsed top level objects - * will be inserted _later_ (not from the parser) as children + * tqparent object where the parsed top level objects + * will be inserted _later_ (not from the parser) as tqchildren */ const PMObject* m_pTopParent; const PMObject* m_pAfter; @@ -227,7 +227,7 @@ protected: */ PMObjectList* m_pResultList; /** - * The QIODevice + * The TQIODevice */ TQIODevice* m_pDevice; /** |