summaryrefslogtreecommitdiffstats
path: root/tdehtml/tdehtmlimage.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-26 02:32:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-26 17:45:23 +0900
commit9fc074fcb2225e6303bf7cec6dc4cc85d6b5edb7 (patch)
tree656280d10f1f0acceacc67bf6544ae4d19812642 /tdehtml/tdehtmlimage.cpp
parent4c9f3f02c0e1a9be5567649f5c97d6638033f74f (diff)
downloadtdelibs-9fc074fcb2225e6303bf7cec6dc4cc85d6b5edb7.tar.gz
tdelibs-9fc074fcb2225e6303bf7cec6dc4cc85d6b5edb7.zip
Replaced various '#define' with actual strings - part 4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 138bb80efac020c7e78871d3f05127eb37f18274)
Diffstat (limited to 'tdehtml/tdehtmlimage.cpp')
-rw-r--r--tdehtml/tdehtmlimage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdehtml/tdehtmlimage.cpp b/tdehtml/tdehtmlimage.cpp
index dc2a51c66..fe8e31c8d 100644
--- a/tdehtml/tdehtmlimage.cpp
+++ b/tdehtml/tdehtmlimage.cpp
@@ -62,7 +62,7 @@ TDEHTMLImage::TDEHTMLImage( TQWidget *parentWidget, const char *widgetName,
TQObject *parent, const char *name, TDEHTMLPart::GUIProfile prof )
: KParts::ReadOnlyPart( parent, name ), m_image( 0 )
{
- TDEHTMLPart* parentPart = ::tqqt_cast<TDEHTMLPart *>( parent );
+ TDEHTMLPart* parentPart = ::tqt_cast<TDEHTMLPart *>( parent );
setInstance( TDEHTMLImageFactory::instance(), prof == TDEHTMLPart::BrowserViewGUI && !parentPart );
TQVBox *box = new TQVBox( parentWidget, widgetName );
@@ -103,7 +103,7 @@ TDEHTMLImage::TDEHTMLImage( TQWidget *parentWidget, const char *widgetName,
// forward important signals from the tdehtml part
// forward opening requests to parent frame (if existing)
- TDEHTMLPart *p = ::tqqt_cast<TDEHTMLPart *>(parent);
+ TDEHTMLPart *p = ::tqt_cast<TDEHTMLPart *>(parent);
KParts::BrowserExtension *be = p ? p->browserExtension() : m_ext;
connect(m_tdehtml->browserExtension(), TQT_SIGNAL(openURLRequestDelayed(const KURL &, const KParts::URLArgs &)),
be, TQT_SIGNAL(openURLRequestDelayed(const KURL &, const KParts::URLArgs &)));
@@ -304,7 +304,7 @@ bool TDEHTMLImage::eventFilter(TQObject *, TQEvent *e) {
case TQEvent::Drop: {
// find out if this part is embedded in a frame, and send the
// event to its outside widget
- TDEHTMLPart *p = ::tqqt_cast<TDEHTMLPart *>(parent());
+ TDEHTMLPart *p = ::tqt_cast<TDEHTMLPart *>(parent());
if (p)
return TQApplication::sendEvent(p->widget(), e);
// otherwise simply forward all dnd events to the part widget,