diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | f7ceb2957839027e8027a9a4c0dfff730cb9b704 (patch) | |
tree | d1d583f11612d149bc0718c80779df4653699dbb /src/libgui/text_editor.h | |
parent | d98fea1f859d23e1b1220a65d7a8eda3b757fd08 (diff) | |
download | piklab-f7ceb2957839027e8027a9a4c0dfff730cb9b704.tar.gz piklab-f7ceb2957839027e8027a9a4c0dfff730cb9b704.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/piklab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/libgui/text_editor.h')
-rw-r--r-- | src/libgui/text_editor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libgui/text_editor.h b/src/libgui/text_editor.h index 5b76734..d5c90c5 100644 --- a/src/libgui/text_editor.h +++ b/src/libgui/text_editor.h @@ -27,7 +27,7 @@ class TextEditor : public Editor Q_OBJECT TQ_OBJECT public: - TextEditor(bool withDebugger, TQWidget *tqparent, const char *name = 0); + TextEditor(bool withDebugger, TQWidget *parent, const char *name = 0); virtual PURL::FileType fileType() const { return url().fileType(); } virtual PURL::Url url() const { return _document->url(); } virtual bool isModified() const; @@ -86,8 +86,8 @@ class SimpleTextEditor : public TextEditor Q_OBJECT TQ_OBJECT public: - SimpleTextEditor(bool withDebugger, PURL::FileType type, TQWidget *tqparent, const char *name = 0); - SimpleTextEditor(bool withDebugger, TQWidget *tqparent, const char *name = 0); + SimpleTextEditor(bool withDebugger, PURL::FileType type, TQWidget *parent, const char *name = 0); + SimpleTextEditor(bool withDebugger, TQWidget *parent, const char *name = 0); void setFileType(PURL::FileType type) { _type = type; } virtual PURL::FileType fileType() const { return _type; } bool setText(const TQString &text); |