summaryrefslogtreecommitdiffstats
path: root/src/kvilib/ext/kvi_mediatype.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
commit27648a99ce3a8a1e498828f1fc93cbd6b3476a91 (patch)
tree09939e827c3467356b78fce055d5b2826a832ae5 /src/kvilib/ext/kvi_mediatype.cpp
parent99e44ac443d2590ecdeb0da46608a0a537177fd7 (diff)
downloadkvirc-27648a99ce3a8a1e498828f1fc93cbd6b3476a91.tar.gz
kvirc-27648a99ce3a8a1e498828f1fc93cbd6b3476a91.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/kvirc@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kvilib/ext/kvi_mediatype.cpp')
-rw-r--r--src/kvilib/ext/kvi_mediatype.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kvilib/ext/kvi_mediatype.cpp b/src/kvilib/ext/kvi_mediatype.cpp
index 36cc6dfc..4601e6bd 100644
--- a/src/kvilib/ext/kvi_mediatype.cpp
+++ b/src/kvilib/ext/kvi_mediatype.cpp
@@ -129,7 +129,7 @@ void KviMediaManager::insertMediaType(KviMediaType * m)
int iWildCount = m->szFileMask.occurences('*');
int iNonWildCount = m->szFileMask.len() - iWildCount;
- // The tqmasks with no wildcards go first in the list
+ // The masks with no wildcards go first in the list
// then we insert the ones with more non-wild chars
int index = 0;
@@ -172,7 +172,7 @@ void KviMediaManager::insertMediaType(KviMediaType * m)
return;
}
// the current one has no wildcards...
- // the longer tqmasks go first....
+ // the longer masks go first....
if(mt->szFileMask.len() < m->szFileMask.len())
{
// the current one is shorter than the new one...insert
@@ -185,8 +185,8 @@ void KviMediaManager::insertMediaType(KviMediaType * m)
m_pMediaTypeList->append(m);
/*
- // the tqmasks with no wildcards go first
- // longer tqmasks go first
+ // the masks with no wildcards go first
+ // longer masks go first
bool bHasWildcards = m->szFileMask.tqcontains('*');
int index = 0;