From bf80a27386386c1d97454c80c6947de3023014ff Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 14 Feb 2012 21:20:24 -0600 Subject: Update various qt function definitions and static methods for tqt3 --- kdf/disklist.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kdf/disklist.cpp') diff --git a/kdf/disklist.cpp b/kdf/disklist.cpp index abec1b8..a49a76b 100644 --- a/kdf/disklist.cpp +++ b/kdf/disklist.cpp @@ -52,7 +52,7 @@ DiskList::DiskList(TQObject *parent, const char *name) disks->setAutoDelete(TRUE); // BackgroundProcesses **************************************** - dfProc = new KProcess(); Q_CHECK_PTR(dfProc); + dfProc = new KProcess(); TQ_CHECK_PTR(dfProc); connect( dfProc, TQT_SIGNAL(receivedStdout(KProcess *, char *, int) ), this, TQT_SLOT (receivedDFStdErrOut(KProcess *, char *, int)) ); connect(dfProc,TQT_SIGNAL(processExited(KProcess *) ), @@ -186,7 +186,7 @@ TQFile f(FSTAB); if ( (!s.isEmpty() ) && (s.find(DELIMITER)!=0) ) { // not empty or commented out by '#' // kdDebug() << "GOT: [" << s << "]" << endl; - disk = new DiskEntry();// Q_CHECK_PTR(disk); + disk = new DiskEntry();// TQ_CHECK_PTR(disk); disk->setMounted(FALSE); disk->setDeviceName(expandEscapes(s.left(s.find(BLANK)))); s=s.remove(0,s.find(BLANK)+1 ); @@ -293,7 +293,7 @@ void DiskList::dfDone() s=t.readLine(); s=s.simplifyWhiteSpace(); if ( !s.isEmpty() ) { - disk = new DiskEntry(); Q_CHECK_PTR(disk); + disk = new DiskEntry(); TQ_CHECK_PTR(disk); if (s.find(BLANK)<0) // devicename was too long, rest in next line if ( !t.eof() ) { // just appends the next line -- cgit v1.2.3