From 3d7cc5d294c8da55ecaefe7a9f5631a72adc610e Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: Remove the tq in front of these incorrectly TQt4-converted methods/data members: tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdiff3@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/directorymergewindow.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/directorymergewindow.cpp') diff --git a/src/directorymergewindow.cpp b/src/directorymergewindow.cpp index f232f61..4d2481d 100644 --- a/src/directorymergewindow.cpp +++ b/src/directorymergewindow.cpp @@ -676,7 +676,7 @@ bool DirectoryMergeWindow::init TQDir::setCurrent(origCurrentDirectory); // Try to improve the view a little bit. - TQWidget* pParent = tqparentWidget(); + TQWidget* pParent = parentWidget(); TQSplitter* pSplitter = static_cast(pParent); if (pSplitter!=0) { @@ -1274,7 +1274,7 @@ void DirectoryMergeWindow::prepareListView( ProgressProxy& pp ) new DirMergeItem( dirMfi.m_pDMI, filePart, &mfi ); mfi.m_pParent = &dirMfi; - if ( !bEqual ) // Set all tqparents to "not equal" + if ( !bEqual ) // Set all parents to "not equal" { MergeFileInfos* p = mfi.m_pParent; while(p!=0) @@ -2484,8 +2484,8 @@ bool DirectoryMergeWindow::mergeFLD( const TQString& nameA,const TQString& nameB int pos=nameDest.tqfindRev('/'); if ( pos>0 ) { - TQString tqparentName = nameDest.left(pos); - bool bSuccess = makeDir(tqparentName, true /*quiet*/); + TQString parentName = nameDest.left(pos); + bool bSuccess = makeDir(parentName, true /*quiet*/); if (!bSuccess) return false; } @@ -2557,8 +2557,8 @@ bool DirectoryMergeWindow::copyFLD( const TQString& srcName, const TQString& des int pos=destName.tqfindRev('/'); if ( pos>0 ) { - TQString tqparentName = destName.left(pos); - bool bSuccess = makeDir(tqparentName, true /*quiet*/); + TQString parentName = destName.left(pos); + bool bSuccess = makeDir(parentName, true /*quiet*/); if (!bSuccess) return false; } @@ -2631,8 +2631,8 @@ bool DirectoryMergeWindow::makeDir( const TQString& name, bool bQuiet ) int pos=name.tqfindRev('/'); if ( pos>0 ) { - TQString tqparentName = name.left(pos); - bool bSuccess = makeDir(tqparentName,true); + TQString parentName = name.left(pos); + bool bSuccess = makeDir(parentName,true); if (!bSuccess) return false; } -- cgit v1.2.3