diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kio/bookmarks/kbookmarkimporter.cc | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/bookmarks/kbookmarkimporter.cc')
-rw-r--r-- | kio/bookmarks/kbookmarkimporter.cc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kio/bookmarks/kbookmarkimporter.cc b/kio/bookmarks/kbookmarkimporter.cc index b646b0626..8a31fa3d2 100644 --- a/kio/bookmarks/kbookmarkimporter.cc +++ b/kio/bookmarks/kbookmarkimporter.cc @@ -23,7 +23,7 @@ #include <klocale.h> #include <kdebug.h> #include <kcharsets.h> -#include <qtextcodec.h> +#include <tqtextcodec.h> #include <sys/types.h> #include <stddef.h> @@ -70,19 +70,19 @@ void KXBELBookmarkImporterImpl::visitLeave(const KBookmarkGroup &) emit endFolder(); } -void KBookmarkImporterBase::setupSignalForwards(QObject *src, QObject *dst) +void KBookmarkImporterBase::setupSignalForwards(TQObject *src, TQObject *dst) { - connect(src, SIGNAL( newBookmark( const QString &, const QCString &, const QString & ) ), - dst, SIGNAL( newBookmark( const QString &, const QCString &, const QString & ) )); - connect(src, SIGNAL( newFolder( const QString &, bool, const QString & ) ), - dst, SIGNAL( newFolder( const QString &, bool, const QString & ) )); - connect(src, SIGNAL( newSeparator() ), - dst, SIGNAL( newSeparator() ) ); - connect(src, SIGNAL( endFolder() ), - dst, SIGNAL( endFolder() ) ); + connect(src, TQT_SIGNAL( newBookmark( const TQString &, const TQCString &, const TQString & ) ), + dst, TQT_SIGNAL( newBookmark( const TQString &, const TQCString &, const TQString & ) )); + connect(src, TQT_SIGNAL( newFolder( const TQString &, bool, const TQString & ) ), + dst, TQT_SIGNAL( newFolder( const TQString &, bool, const TQString & ) )); + connect(src, TQT_SIGNAL( newSeparator() ), + dst, TQT_SIGNAL( newSeparator() ) ); + connect(src, TQT_SIGNAL( endFolder() ), + dst, TQT_SIGNAL( endFolder() ) ); } -KBookmarkImporterBase* KBookmarkImporterBase::factory( const QString &type ) +KBookmarkImporterBase* KBookmarkImporterBase::factory( const TQString &type ) { if (type == "netscape") return new KNSBookmarkImporterImpl; |