summaryrefslogtreecommitdiffstats
path: root/quanta/components
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components')
-rw-r--r--quanta/components/csseditor/csseditor.cpp2
-rw-r--r--quanta/components/csseditor/csseditor.h4
-rw-r--r--quanta/components/framewizard/selectablearea.cpp4
-rw-r--r--quanta/components/framewizard/selectablearea.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/quanta/components/csseditor/csseditor.cpp b/quanta/components/csseditor/csseditor.cpp
index a157adae..b684030d 100644
--- a/quanta/components/csseditor/csseditor.cpp
+++ b/quanta/components/csseditor/csseditor.cpp
@@ -193,7 +193,7 @@ void CSSEditor::initialize(){
m_myhi = new TQMyHighlighter(display);
TQBoxLayout *fPreviewLayout = new TQBoxLayout(fPreview,TQBoxLayout::LeftToRight);
- m_previewer=new KHTMLPart(fPreview);
+ m_previewer=new TDEHTMLPart(fPreview);
fPreviewLayout->addWidget(m_previewer->view());
diff --git a/quanta/components/csseditor/csseditor.h b/quanta/components/csseditor/csseditor.h
index fa9e3339..0df95553 100644
--- a/quanta/components/csseditor/csseditor.h
+++ b/quanta/components/csseditor/csseditor.h
@@ -27,7 +27,7 @@
class propertySetter;
class TDEConfig;
-class KHTMLPart;
+class TDEHTMLPart;
class TQListViewItem;
class TQDomNodeList;
class TQVariant;
@@ -61,7 +61,7 @@ class CSSEditor : public CSSEditorS
TQMyHighlighter *m_myhi;
propertySetter *m_ps;
myCheckListItem *m_currentProp;
- KHTMLPart *m_previewer;
+ TDEHTMLPart *m_previewer;
TQDomDocument m_doc;
TQMap<TQString,TQString> m_properties;
TQString m_selectorName,
diff --git a/quanta/components/framewizard/selectablearea.cpp b/quanta/components/framewizard/selectablearea.cpp
index c168e323..1139d658 100644
--- a/quanta/components/framewizard/selectablearea.cpp
+++ b/quanta/components/framewizard/selectablearea.cpp
@@ -20,7 +20,7 @@
//#include <kdebug.h>
#include "fwglobal.h"
-SelectableArea::SelectableArea(TQWidget *parent, const char *name ) : KHTMLPart(parent,name) {
+SelectableArea::SelectableArea(TQWidget *parent, const char *name ) : TDEHTMLPart(parent,name) {
view()->setFrameShape(TQFrame::NoFrame);
view()->setMinimumSize(TQSize(1,1));
view()->installEventFilter(this);
@@ -50,7 +50,7 @@ bool SelectableArea::eventFilter(TQObject *o, TQEvent *event){
return true;
}
break;
- default: return KHTMLPart::eventFilter( o, event );
+ default: return TDEHTMLPart::eventFilter( o, event );
}
}
diff --git a/quanta/components/framewizard/selectablearea.h b/quanta/components/framewizard/selectablearea.h
index 3eacaf4f..0efccc72 100644
--- a/quanta/components/framewizard/selectablearea.h
+++ b/quanta/components/framewizard/selectablearea.h
@@ -27,7 +27,7 @@
*/
-class SelectableArea : public KHTMLPart {
+class SelectableArea : public TDEHTMLPart {
Q_OBJECT