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 | 5660db4e68c904cc2dd01888775483189cda7a10 (patch) | |
tree | f8bb487ab12519611d3ddca1839a03396e954c77 /src/k9glwidget.h | |
parent | 33e6166f7e62c479bad5d46ad240ea9704f848fd (diff) | |
download | k9copy-5660db4e68c904cc2dd01888775483189cda7a10.tar.gz k9copy-5660db4e68c904cc2dd01888775483189cda7a10.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k9glwidget.h')
-rw-r--r-- | src/k9glwidget.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/k9glwidget.h b/src/k9glwidget.h index e032ed8..f7be0e0 100644 --- a/src/k9glwidget.h +++ b/src/k9glwidget.h @@ -49,7 +49,7 @@ Q_OBJECT TQ_OBJECT public: void setImage(uchar *_buffer,int _width,int _height,int _len); - static k9GLWidget * createWidget(TQWidget *tqparent = 0, const char *name = 0); + static k9GLWidget * createWidget(TQWidget *parent = 0, const char *name = 0); ~k9GLWidget(); protected: void draw(); @@ -57,7 +57,7 @@ protected: void initializeGL(); void paintGL(); private: - k9GLWidget(TQWidget *tqparent = 0, const char *name = 0); + k9GLWidget(TQWidget *parent = 0, const char *name = 0); TQImage m_image; TQMutex m_mutex; int m_width,m_height; @@ -89,12 +89,12 @@ private: class k9GLWidget:public TQWidget { public: - static k9GLWidget * createWidget(TQWidget *tqparent = 0, const char *name = 0) { - return new k9GLWidget(tqparent,name); + static k9GLWidget * createWidget(TQWidget *parent = 0, const char *name = 0) { + return new k9GLWidget(parent,name); } void setImage(uchar *_buffer,int _width,int _height,int _len){}; private: - k9GLWidget(TQWidget *tqparent = 0, const char *name = 0){}; + k9GLWidget(TQWidget *parent = 0, const char *name = 0){}; }; |