summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 21:05:18 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 21:05:18 -0600
commited530727c56fe2f062c1c174d73274667cd983a5 (patch)
tree33d79096cab9a9a11508ce9d7fdc6727974e320a /lib
parent595a6e60c6aafad9006327dbeb822b608e7f9b33 (diff)
downloadtdevelop-ed530727c56fe2f062c1c174d73274667cd983a5.tar.gz
tdevelop-ed530727c56fe2f062c1c174d73274667cd983a5.zip
Rename kiobuffer and KHTML
Diffstat (limited to 'lib')
-rw-r--r--lib/interfaces/Makefile.am2
-rw-r--r--lib/widgets/kdevhtmlpart.cpp6
-rw-r--r--lib/widgets/kdevhtmlpart.h8
3 files changed, 8 insertions, 8 deletions
diff --git a/lib/interfaces/Makefile.am b/lib/interfaces/Makefile.am
index ba43ce86..75935ca1 100644
--- a/lib/interfaces/Makefile.am
+++ b/lib/interfaces/Makefile.am
@@ -14,7 +14,7 @@ libkdevinterfaces_la_SOURCES = kdevcore.cpp kdevproject.cpp \
libkdevinterfaces_la_LDFLAGS = -no-undefined $(all_libraries)
libkdevinterfaces_la_LIBADD = $(top_builddir)/lib/interfaces/external/libkinterfacedesigner.la \
$(top_builddir)/lib/util/libkdevutil.la \
- $(LIB_TDEUI) $(LIB_KHTML) $(LIB_KPARTS) -ltdetexteditor -ltdescript -lDCOP
+ $(LIB_TDEUI) $(LIB_TDEHTML) $(LIB_KPARTS) -ltdetexteditor -ltdescript -lDCOP
tdevelopincludedir = $(includedir)/tdevelop/interfaces
tdevelopinclude_HEADERS = kdevlanguagesupport.h kdevmainwindow.h \
diff --git a/lib/widgets/kdevhtmlpart.cpp b/lib/widgets/kdevhtmlpart.cpp
index 49ac87d2..34d5a2c0 100644
--- a/lib/widgets/kdevhtmlpart.cpp
+++ b/lib/widgets/kdevhtmlpart.cpp
@@ -20,7 +20,7 @@
#include "kdevhtmlpart.h"
KDevHTMLPart::KDevHTMLPart()
- : KHTMLPart(0L, 0L, 0L, "KDevHTMLPart", DefaultGUI )
+ : TDEHTMLPart(0L, 0L, 0L, "KDevHTMLPart", DefaultGUI )
{
setXMLFile(locate("data", "tdevelop/kdevhtml_partui.rc"), true);
@@ -79,7 +79,7 @@ KDevHTMLPart::KDevHTMLPart()
//settings:
TDEConfig *appConfig = TDEGlobal::config();
- appConfig->setGroup("KHTMLPart");
+ appConfig->setGroup("TDEHTMLPart");
setStandardFont(appConfig->readEntry("StandardFont",
settings()->stdFontName()));
setFixedFont(appConfig->readEntry("FixedFont",
@@ -323,7 +323,7 @@ bool KDevHTMLPart::openURL(const KURL &url)
TQString path = resolveEnvVarsInURL(url.url());
KURL newUrl(path);
- bool retval = KHTMLPart::openURL(newUrl);
+ bool retval = TDEHTMLPart::openURL(newUrl);
if ( retval )
{
emit fileNameChanged(this);
diff --git a/lib/widgets/kdevhtmlpart.h b/lib/widgets/kdevhtmlpart.h
index 13f155a5..3dbc728e 100644
--- a/lib/widgets/kdevhtmlpart.h
+++ b/lib/widgets/kdevhtmlpart.h
@@ -9,7 +9,7 @@
/**
@file kdevhtmlpart.h
-Customized KHTML part for KDevelop.
+Customized TDEHTML part for KDevelop.
*/
class KAction;
@@ -27,10 +27,10 @@ struct DocumentationHistoryEntry {
};
/**
-Customized KHTML part for KDevelop.
+Customized TDEHTML part for KDevelop.
Used as HTML documentation and file viewer.
-Represents customized BrowserViewGUI mode of KHTMLPart. Provides also actions for:
+Represents customized BrowserViewGUI mode of TDEHTMLPart. Provides also actions for:
- reload;
- stop;
- duplicate;
@@ -41,7 +41,7 @@ Represents customized BrowserViewGUI mode of KHTMLPart. Provides also actions fo
.
It has it's own popup menu and font/zoom settings.
*/
-class KDevHTMLPart : public KHTMLPart
+class KDevHTMLPart : public TDEHTMLPart
{
Q_OBJECT