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 | 625904bd3097f9749450428904ca14ff2531824d (patch) | |
tree | a45c43d5de71cb720078fa1272a4339815a919be /khexedit/hexviewwidget.cc | |
parent | 6335dc55802871b5a43492f217b6edbb420204c4 (diff) | |
download | tdeutils-625904bd3097f9749450428904ca14ff2531824d.tar.gz tdeutils-625904bd3097f9749450428904ca14ff2531824d.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khexedit/hexviewwidget.cc')
-rw-r--r-- | khexedit/hexviewwidget.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/khexedit/hexviewwidget.cc b/khexedit/hexviewwidget.cc index ca2edd2..555e0cc 100644 --- a/khexedit/hexviewwidget.cc +++ b/khexedit/hexviewwidget.cc @@ -165,11 +165,11 @@ void CDragManager::setupTimer( void ) // -// This widget will use the entire space of the tqparent widget +// This widget will use the entire space of the parent widget // -CHexViewWidget::CHexViewWidget( TQWidget *tqparent, const char *name, +CHexViewWidget::CHexViewWidget( TQWidget *parent, const char *name, CHexBuffer *hexBuffer ) - : TQFrame( tqparent, name, + : TQFrame( parent, name, #ifdef USE_NORTHWEST_GRAVITY TQt::WStaticContents #else @@ -177,7 +177,7 @@ CHexViewWidget::CHexViewWidget( TQWidget *tqparent, const char *name, #endif ), mScrollBarSize( 16 ) { - if( tqparent == 0 || hexBuffer == 0 ) { return; } + if( parent == 0 || hexBuffer == 0 ) { return; } // // TQt 2.0: @@ -967,10 +967,10 @@ void CHexViewWidget::copy( void ) disconnect(TQApplication::tqclipboard(),TQT_SIGNAL(dataChanged()), this,TQT_SLOT(clipboardChanged())); // - // Note: Do no give the CHexDrag a tqparent != 0. The clipboard + // Note: Do no give the CHexDrag a parent != 0. The clipboard // owns the current dragdata and will destroy it on exit or - // when it receives a new object. If the CHexDrag has a tqparent - // != 0, the CHexDrag object will be destroyed when the tqparent + // when it receives a new object. If the CHexDrag has a parent + // != 0, the CHexDrag object will be destroyed when the parent // is destroyed. We will then have a double destroy situation // when the app. is closed (=> segfault). // @@ -1670,7 +1670,7 @@ void CHexViewWidget::dropEvent( TQDropEvent *e ) { // // This widget can not itself open a file so it will simply pass - // the request to a tqparent that can (hopefully) do this + // the request to a parent that can (hopefully) do this // for( KURL::List::ConstIterator it = list.begin(); it != list.end(); it++ ) { |