diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /interfaces/ktexteditor/document.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'interfaces/ktexteditor/document.h')
-rw-r--r-- | interfaces/ktexteditor/document.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/interfaces/ktexteditor/document.h b/interfaces/ktexteditor/document.h index 9260d596c..624c344b9 100644 --- a/interfaces/ktexteditor/document.h +++ b/interfaces/ktexteditor/document.h @@ -35,7 +35,7 @@ class KTEXTEDITOR_EXPORT Document : public KTextEditor::Editor Q_OBJECT public: - Document ( QObject *parent = 0, const char *name = 0 ); + Document ( TQObject *parent = 0, const char *name = 0 ); virtual ~Document (); /** @@ -46,19 +46,19 @@ class KTEXTEDITOR_EXPORT Document : public KTextEditor::Editor /** * Returns this document's DCOP suffix for identifiying its DCOP interface. */ - QCString documentDCOPSuffix () const; + TQCString documentDCOPSuffix () const; /** * Create a view that will display the document data. You can create as many * views as you like. When the user modifies data in one view then all other * views will be updated as well. */ - virtual class View *createView ( QWidget *parent, const char *name = 0 ) = 0; + virtual class View *createView ( TQWidget *parent, const char *name = 0 ) = 0; /* * Returns a list of all views of this document. */ - virtual QPtrList<class View> views () const = 0; + virtual TQPtrList<class View> views () const = 0; private: class PrivateDocument *d; @@ -66,7 +66,7 @@ class KTEXTEDITOR_EXPORT Document : public KTextEditor::Editor unsigned int myDocumentNumber; }; -KTEXTEDITOR_EXPORT Document *createDocument ( const char* libname, QObject *parent = 0, const char *name = 0 ); +KTEXTEDITOR_EXPORT Document *createDocument ( const char* libname, TQObject *parent = 0, const char *name = 0 ); } |