diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 21:04:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 21:04:28 -0600 |
commit | c5bee2a602f3b6a9ca58c247df52b834ea50d0ed (patch) | |
tree | d1c0ded0cabb3d4fdb2ad0e9e68697282eee0dc4 /kontact | |
parent | b94985f2c07570910ceecd8a0e544460a0de190b (diff) | |
download | tdepim-c5bee2a602f3b6a9ca58c247df52b834ea50d0ed.tar.gz tdepim-c5bee2a602f3b6a9ca58c247df52b834ea50d0ed.zip |
Rename kiobuffer and KHTML
Diffstat (limited to 'kontact')
-rw-r--r-- | kontact/src/Makefile.am | 2 | ||||
-rw-r--r-- | kontact/src/mainwindow.cpp | 2 | ||||
-rw-r--r-- | kontact/src/mainwindow.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/kontact/src/Makefile.am b/kontact/src/Makefile.am index daec1fa3a..96513a5ac 100644 --- a/kontact/src/Makefile.am +++ b/kontact/src/Makefile.am @@ -13,7 +13,7 @@ kontact_METASOURCES = AUTO kontact_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor kontact_LDADD = $(top_builddir)/libtdepim/libtdepim.la \ $(top_builddir)/kontact/interfaces/libkpinterfaces.la libkontact.la \ - $(LIB_KPARTS) $(LIB_KUTILS) $(LIB_KHTML) + $(LIB_KPARTS) $(LIB_KUTILS) $(LIB_TDEHTML) kontact_SOURCES = main.cpp mainwindow.cpp sidepanebase.cpp \ iconsidepane.cpp aboutdialog.cpp profilemanager.cpp profiledialog.cpp \ kontactiface.skel diff --git a/kontact/src/mainwindow.cpp b/kontact/src/mainwindow.cpp index e914fe07d..ec1e6b0bb 100644 --- a/kontact/src/mainwindow.cpp +++ b/kontact/src/mainwindow.cpp @@ -312,7 +312,7 @@ void MainWindow::initAboutScreen() TQHBox *introbox = new TQHBox( mPartsStack ); mPartsStack->addWidget( introbox ); mPartsStack->raiseWidget( introbox ); - mIntroPart = new KHTMLPart( introbox ); + mIntroPart = new TDEHTMLPart( introbox ); mIntroPart->widget()->setFocusPolicy( TQ_WheelFocus ); // Let's better be paranoid and disable plugins (it defaults to enabled): mIntroPart->setPluginsEnabled( false ); diff --git a/kontact/src/mainwindow.h b/kontact/src/mainwindow.h index de23b19a8..e9ddc121f 100644 --- a/kontact/src/mainwindow.h +++ b/kontact/src/mainwindow.h @@ -46,7 +46,7 @@ class KAction; class TDEConfig; class KPluginInfo; class KRSqueezedTextLabel; -class KHTMLPart; +class TDEHTMLPart; class KeyPressEater; namespace KPIM @@ -156,7 +156,7 @@ class MainWindow : public Kontact::Core, public KDCOPServiceStarter, public Kont PluginList mDelayedPreload; ActionPluginList mActionPlugins; TQValueList<KPluginInfo*> mPluginInfos; - KHTMLPart *mIntroPart; + TDEHTMLPart *mIntroPart; KRSqueezedTextLabel* mStatusMsgLabel; KPIM::StatusbarProgressWidget *mLittleProgress; |