diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:10:16 -0600 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-18 23:49:43 +0200 |
| commit | e1c9b8f5bbbf686e798b84f91f205bf512417ea7 (patch) | |
| tree | c44a0078d920ea11d76bb0df7dd0ec640173683b /src/kmplayer_atom.cpp | |
| parent | 5f87f03087289613a11d176e1f57233b572714d6 (diff) | |
| download | kmplayer-e1c9b8f5bbbf686e798b84f91f205bf512417ea7.tar.gz kmplayer-e1c9b8f5bbbf686e798b84f91f205bf512417ea7.zip | |
Rename old tq methods that no longer need a unique name
(cherry picked from commit 81ad3b51a1f061b0934426aaf339917f76c0cfc5)
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; } |
