diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:30:48 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:30:48 -0600 |
commit | f97c8a56e217f04e08776ccf8021721b7d919b7d (patch) | |
tree | 436c68db12057f4d08acfbf37bec9cd8dfafcec8 /src/kmplayer_atom.cpp | |
parent | d211eb866a067b537fb32cab5f10f8dd24a73ad7 (diff) | |
download | kmplayer-f97c8a56e217f04e08776ccf8021721b7d919b7d.tar.gz kmplayer-f97c8a56e217f04e08776ccf8021721b7d919b7d.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/kmplayer_atom.cpp')
-rw-r--r-- | src/kmplayer_atom.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kmplayer_atom.cpp b/src/kmplayer_atom.cpp index a35c649..3b5915f 100644 --- a/src/kmplayer_atom.cpp +++ b/src/kmplayer_atom.cpp @@ -75,7 +75,7 @@ void ATOM::Link::closed () { else if (a->name () == "rel") rel = a->value (); } - if (!href.isEmpty () && rel == TQString::tqfromLatin1 ("enclosure")) + if (!href.isEmpty () && rel == TQString::fromLatin1 ("enclosure")) src = href; else if (pretty_name.isEmpty ()) pretty_name = href; @@ -87,12 +87,12 @@ void ATOM::Content::closed () { src = a->value (); else if (a->name () == StringPool::attr_type) { TQString v = a->value ().lower (); - if (v == TQString::tqfromLatin1 ("text")) - mimetype = TQString::tqfromLatin1 ("text/plain"); - else if (v == TQString::tqfromLatin1 ("html")) - mimetype = TQString::tqfromLatin1 ("text/html"); - else if (v == TQString::tqfromLatin1 ("xhtml")) - mimetype = TQString::tqfromLatin1 ("application/xhtml+xml"); + if (v == TQString::fromLatin1 ("text")) + mimetype = TQString::fromLatin1 ("text/plain"); + else if (v == TQString::fromLatin1 ("html")) + mimetype = TQString::fromLatin1 ("text/html"); + else if (v == TQString::fromLatin1 ("xhtml")) + mimetype = TQString::fromLatin1 ("application/xhtml+xml"); else mimetype = v; } |