summaryrefslogtreecommitdiffstats
path: root/kghostview
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:32:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:32:17 -0600
commitc509088a31cffd8e6d25c00a00414025426fc737 (patch)
tree06242637d2244aa79ad8812f39e64005ffc5ea91 /kghostview
parent913e257dbbebe29c4f356ebb9fc6e888d0d1ac75 (diff)
downloadtdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.tar.gz
tdegraphics-c509088a31cffd8e6d25c00a00414025426fc737.zip
Rename additional global TQt functions
Diffstat (limited to 'kghostview')
-rw-r--r--kghostview/kgvdocument.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kghostview/kgvdocument.cpp b/kghostview/kgvdocument.cpp
index 551f43c6..407566b8 100644
--- a/kghostview/kgvdocument.cpp
+++ b/kghostview/kgvdocument.cpp
@@ -433,7 +433,7 @@ const CDSCMEDIA* KGVDocument::findMediaByName( const TQString& mediaName ) const
if( dsc()->media() ) {
for( unsigned int i = 0; i < dsc()->media_count(); i++ ) {
if( dsc()->media()[i] && dsc()->media()[i]->name
- && qstricmp( mediaName.local8Bit(),
+ && tqstricmp( mediaName.local8Bit(),
dsc()->media()[i]->name ) == 0 ) {
return dsc()->media()[i];
}
@@ -443,7 +443,7 @@ const CDSCMEDIA* KGVDocument::findMediaByName( const TQString& mediaName ) const
/* Try our known media */
const CDSCMEDIA *m = dsc_known_media;
while( m->name ) {
- if( qstricmp( mediaName.local8Bit(), m->name ) == 0 ) {
+ if( tqstricmp( mediaName.local8Bit(), m->name ) == 0 ) {
return m;
}
m++;