diff options
Diffstat (limited to 'librss/loader.cpp')
-rw-r--r-- | librss/loader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/librss/loader.cpp b/librss/loader.cpp index 0ca68389..b16c3d1e 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, Status)), + connect(loader, TQT_SIGNAL(loadingComplete(Loader *, Document, tqStatus)), object, slot); return loader; } @@ -237,7 +237,7 @@ void Loader::slotRetrieverDone(const TQByteArray &data, bool success) d->retriever = NULL; Document rssDoc; - Status status = Success; + tqStatus 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 unicode characters 0357, 0273, 0277. For + * with the three leading tqunicode characters 0357, 0273, 0277. For * an example, check http://msdn.microsoft.com/rss.xml */ if (len > 3 && TQChar(*charData) == TQChar(0357)) { |