diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:20:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:20:24 -0600 |
commit | bf80a27386386c1d97454c80c6947de3023014ff (patch) | |
tree | e14a70aec8a0a8ab82d67e7dbe4920fb401e17ef /kdf/disklist.cpp | |
parent | 23e0affc4de269f3a7852536ef3a4f3df4570ae7 (diff) | |
download | tdeutils-bf80a27386386c1d97454c80c6947de3023014ff.tar.gz tdeutils-bf80a27386386c1d97454c80c6947de3023014ff.zip |
Update various qt function definitions and static methods for tqt3
Diffstat (limited to 'kdf/disklist.cpp')
-rw-r--r-- | kdf/disklist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |