summaryrefslogtreecommitdiffstats
path: root/iso
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:05:56 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-23 02:44:05 +0200
commit24e8639baba48189daf979443a263a2c74560c89 (patch)
treed942ded1e77a85d346b6120a6f40dd27e06066e2 /iso
parent74289f5af0c907bf314337aefb8545fd1d970d9a (diff)
downloadkrusader-24e8639baba48189daf979443a263a2c74560c89.tar.gz
krusader-24e8639baba48189daf979443a263a2c74560c89.zip
Rename obsolete tq methods to standard names
(cherry picked from commit 843b060e709db05ef75abc3495400e5f159fb4b2)
Diffstat (limited to 'iso')
-rw-r--r--iso/kiso.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/iso/kiso.cpp b/iso/kiso.cpp
index 61baaf4..45dde07 100644
--- a/iso/kiso.cpp
+++ b/iso/kiso.cpp
@@ -55,7 +55,7 @@
////////////////////////////////////////////////////////////////////////
/**
- * puts the track tqlayout of the device 'fname' into 'tracks'
+ * puts the track layout of the device 'fname' into 'tracks'
* tracks structure: start sector, track number, ...
* tracks should be 100*2 entry long (this is the maximum in the CD-ROM standard)
* currently it's linux only, porters are welcome
@@ -359,7 +359,7 @@ bool KIso::openArchive( int mode )
memset(&buf,0,sizeof(struct stat));
buf.st_mode=0777;
} else {
- /* If it's a block device, try to query the track tqlayout (for multisession) */
+ /* If it's a block device, try to query the track layout (for multisession) */
if (m_startsec == -1 && S_ISBLK(buf.st_mode))
trackno=getTracks(m_filename.latin1(),(int*) &tracks);
}