summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdbackup.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitda1ed73c4c94933c6e181a031058946831f15451 (patch)
treed28140e450337e05712a1ed2d54eb32211f80f7b /libk9copy/k9dvdbackup.cpp
parentd6bd5602800283c9be6bf8ca8adae91ef630edd7 (diff)
downloadk9copy-da1ed73c4c94933c6e181a031058946831f15451.tar.gz
k9copy-da1ed73c4c94933c6e181a031058946831f15451.zip
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/k9copy@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk9copy/k9dvdbackup.cpp')
-rwxr-xr-xlibk9copy/k9dvdbackup.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libk9copy/k9dvdbackup.cpp b/libk9copy/k9dvdbackup.cpp
index 48a1463..e261038 100755
--- a/libk9copy/k9dvdbackup.cpp
+++ b/libk9copy/k9dvdbackup.cpp
@@ -850,22 +850,22 @@ k9Vobu * k9DVDBackup::remapVobu(uint32_t *value) {
k9Vobu * k9DVDBackup::remapOffset(uint32_t _sector,uint32_t *_offset,int _dir) {
k9Vobu *vobu1=NULL, *vobu2=NULL;
uint32_t offset,sector;
- uint32_t tqmaskOffset1=0,tqmaskOffset2=0,tqmaskSector=0;
+ uint32_t maskOffset1=0,maskOffset2=0,maskSector=0;
if ((*_offset!= 0xbfffffff) && (*_offset!=0x3fffffff) && (*_offset!=0x7fffffff)) {
if ( (*_offset & 0x80000000) == 0x80000000)
- tqmaskOffset1= 0x80000000;
+ maskOffset1= 0x80000000;
if ( (*_offset & 0x40000000) == 0x40000000)
- tqmaskOffset2= 0x40000000;
+ maskOffset2= 0x40000000;
offset = *_offset & 0x3FFFFFFF;
if ( (_sector & 0x80000000) == 0x80000000) {
sector = _sector & 0x7FFFFFFF;
- tqmaskSector=0x80000000;
+ maskSector=0x80000000;
} else {
sector =_sector;
- tqmaskSector=0;
+ maskSector=0;
}
k9CellList *lstCell;
@@ -883,8 +883,8 @@ k9Vobu * k9DVDBackup::remapOffset(uint32_t _sector,uint32_t *_offset,int _dir) {
if ((vobu1 !=NULL) && (vobu2!=NULL)) {
- *_offset = abs(vobu1->newSector - vobu2->newSector) | tqmaskOffset1 ;
- *_offset |= tqmaskOffset2;
+ *_offset = abs(vobu1->newSector - vobu2->newSector) | maskOffset1 ;
+ *_offset |= maskOffset2;
return vobu2;
}