diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:47:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-24 22:29:31 +0900 |
commit | 32a52075874929d609602ee52bdb24b18b8e17dc (patch) | |
tree | ee3f82667eedf41a1f43906f63ffbbb307e2ca6c /libk3b/tools/k3blibdvdcss.cpp | |
parent | 21fdca70fe43b87a4370c8a5d805783f859e70ca (diff) | |
download | k3b-32a52075874929d609602ee52bdb24b18b8e17dc.tar.gz k3b-32a52075874929d609602ee52bdb24b18b8e17dc.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit a505e95cbfde0aa2edbbd08af0ca4a00fd276d4a)
Diffstat (limited to 'libk3b/tools/k3blibdvdcss.cpp')
-rw-r--r-- | libk3b/tools/k3blibdvdcss.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libk3b/tools/k3blibdvdcss.cpp b/libk3b/tools/k3blibdvdcss.cpp index 5baf8b4..bb0e375 100644 --- a/libk3b/tools/k3blibdvdcss.cpp +++ b/libk3b/tools/k3blibdvdcss.cpp @@ -226,7 +226,7 @@ bool K3bLibDvdCss::crackAllKeys() const K3bIso9660File* file = dynamic_cast<const K3bIso9660File*>( dir->entry( filename ) ); if( file && file->size() > 0 ) { - d->titleOffsets.append( tqMakePair( (int)file->startSector(), (int)(file->size() / 2048U) ) ); + d->titleOffsets.append( qMakePair( (int)file->startSector(), (int)(file->size() / 2048U) ) ); kdDebug() << "(K3bLibDvdCss) Get key for /" << filename << " at " << file->startSector() << endl; if( seek( (int)file->startSector(), DVDCSS_SEEK_KEY ) < 0 ) { kdDebug() << "(K3bLibDvdCss) unable to seek to " << file->startSector() << endl; |