From 3431ac7ef510aa8b8240723926b3a7ab06097938 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:18:41 -0600 Subject: [PATCH] Rename additional global TQt functions --- kaffeine/src/input/disc/plugins/oggvorbis/koggenc.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kaffeine/src/input/disc/plugins/oggvorbis/koggenc.cpp b/kaffeine/src/input/disc/plugins/oggvorbis/koggenc.cpp index bd16963..d7abe9a 100644 --- a/kaffeine/src/input/disc/plugins/oggvorbis/koggenc.cpp +++ b/kaffeine/src/input/disc/plugins/oggvorbis/koggenc.cpp @@ -110,27 +110,27 @@ void KOggEnc::start( TQString title, TQString artist, TQString album, TQString t srand( time(NULL) ); ogg_stream_init( &os, rand() ); if ( !title.isNull() ) { - tag = qstrdup( title.utf8() ); + tag = tqstrdup( title.utf8() ); vorbis_comment_add_tag( &vc, "title", tag ); delete [] tag; } if ( !artist.isNull() ) { - tag = qstrdup( artist.utf8() ); + tag = tqstrdup( artist.utf8() ); vorbis_comment_add_tag( &vc, "artist", tag ); delete [] tag; } if ( !album.isNull() ) { - tag = qstrdup( album.utf8() ); + tag = tqstrdup( album.utf8() ); vorbis_comment_add_tag( &vc, "album", tag ); delete [] tag; } if ( !tracknumber.isNull() ) { - tag = qstrdup( tracknumber.utf8() ); + tag = tqstrdup( tracknumber.utf8() ); vorbis_comment_add_tag( &vc, "tracknumber", tag ); delete [] tag; } if ( !genre.isNull() ) { - tag = qstrdup( genre.utf8() ); + tag = tqstrdup( genre.utf8() ); vorbis_comment_add_tag( &vc, "genre", tag ); delete [] tag; }