diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:15:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:15:08 -0600 |
commit | 39177c1528006932b00136d34cf022434df73d72 (patch) | |
tree | a0791bebede3e7eb454ac2268a14c4e8a157de6d /konq-plugins/akregator/konqfeedicon.cpp | |
parent | 2a74bca8c834c4d4f391c70de8fdfa12a7cc972c (diff) | |
download | tdeaddons-39177c1528006932b00136d34cf022434df73d72.tar.gz tdeaddons-39177c1528006932b00136d34cf022434df73d72.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'konq-plugins/akregator/konqfeedicon.cpp')
-rw-r--r-- | konq-plugins/akregator/konqfeedicon.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/konq-plugins/akregator/konqfeedicon.cpp b/konq-plugins/akregator/konqfeedicon.cpp index dd8a8c5..07006b6 100644 --- a/konq-plugins/akregator/konqfeedicon.cpp +++ b/konq-plugins/akregator/konqfeedicon.cpp @@ -30,11 +30,11 @@ #include <kapplication.h> #include <kdebug.h> #include <kgenericfactory.h> -#include <khtml_part.h> +#include <tdehtml_part.h> #include <kiconloader.h> #include <klibloader.h> #include <kmessagebox.h> -#include <kparts/statusbarextension.h> +#include <tdeparts/statusbarextension.h> #include <kprocess.h> #include <kstandarddirs.h> #include <kstatusbar.h> @@ -62,7 +62,7 @@ KonqFeedIcon::KonqFeedIcon(TQObject *parent, const char *name, const TQStringLis m_part = dynamic_cast<KHTMLPart*>(parent); if(!m_part) { kdDebug() << "couldn't get part" << endl; return; } - // FIXME: need to do this because of a bug in khtmlpart, it's fixed now for 3.4 (and prolly backported for 3.3.3?) + // FIXME: need to do this because of a bug in tdehtmlpart, it's fixed now for 3.4 (and prolly backported for 3.3.3?) //connect(m_part->view(), TQT_SIGNAL(finishedLayout()), this, TQT_SLOT(addFeedIcon())); TQTimer::singleShot(0, this, TQT_SLOT(waitPartToLoad())); } @@ -154,7 +154,7 @@ void KonqFeedIcon::addFeedIcon() m_feedIcon = new KURLLabel(m_statusBarEx->statusBar()); - // from khtmlpart's ualabel + // from tdehtmlpart's ualabel m_feedIcon->setFixedHeight(instance()->iconLoader()->currentSize(KIcon::Small)); m_feedIcon->setSizePolicy(TQSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed)); m_feedIcon->setUseCursor(false); |