From 808e453c56036211f57482ed847d54aca01bba68 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:49:40 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- librss/loader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'librss/loader.cpp') diff --git a/librss/loader.cpp b/librss/loader.cpp index b16c3d1e..0ca68389 100644 --- a/librss/loader.cpp +++ b/librss/loader.cpp @@ -197,7 +197,7 @@ Loader *Loader::create() Loader *Loader::create(TQObject *object, const char *slot) { Loader *loader = create(); - connect(loader, TQT_SIGNAL(loadingComplete(Loader *, Document, tqStatus)), + connect(loader, TQT_SIGNAL(loadingComplete(Loader *, Document, Status)), object, slot); return loader; } @@ -237,7 +237,7 @@ void Loader::slotRetrieverDone(const TQByteArray &data, bool success) d->retriever = NULL; Document rssDoc; - tqStatus status = Success; + Status status = Success; if (success) { TQDomDocument doc; @@ -256,7 +256,7 @@ void Loader::slotRetrieverDone(const TQByteArray &data, bool success) } /* It seems that some Microsoft-developed code generates UTF-8 files - * with the three leading tqunicode characters 0357, 0273, 0277. For + * with the three leading unicode characters 0357, 0273, 0277. For * an example, check http://msdn.microsoft.com/rss.xml */ if (len > 3 && TQChar(*charData) == TQChar(0357)) { -- cgit v1.2.1