summaryrefslogtreecommitdiffstats
path: root/xparts/mozilla
diff options
context:
space:
mode:
Diffstat (limited to 'xparts/mozilla')
-rw-r--r--xparts/mozilla/kmozillapart.cpp6
-rw-r--r--xparts/mozilla/kmozillapart.h6
-rw-r--r--xparts/mozilla/kshell.cpp4
3 files changed, 8 insertions, 8 deletions
diff --git a/xparts/mozilla/kmozillapart.cpp b/xparts/mozilla/kmozillapart.cpp
index 3297692d..8eba1441 100644
--- a/xparts/mozilla/kmozillapart.cpp
+++ b/xparts/mozilla/kmozillapart.cpp
@@ -15,8 +15,8 @@
typedef KParts::GenericFactory<KMozillaPart> KMozillaPartFactory;
K_EXPORT_COMPONENT_FACTORY( libkmozillapart, KMozillaPartFactory );
-KMozillaPart::KMozillaPart(TTQWidget *parentWidget, const char *widgetName,
- TTQObject *parent, const char *name, const TTQStringList &)
+KMozillaPart::KMozillaPart(TQWidget *parentWidget, const char *widgetName,
+ TQObject *parent, const char *name, const TQStringList &)
: XPartHost_KPart(parentWidget, widgetName, parent, name)
{
setInstance( KMozillaPartFactory::instance() );
@@ -36,7 +36,7 @@ KMozillaPart::~KMozillaPart()
delete m_partProcess;
}
-void KMozillaPart::createActions( const TTQCString &xmlActions )
+void KMozillaPart::createActions( const TQCString &xmlActions )
{
XPartHost_KPart::createActions( xmlActions );
qDebug("----<<<<<< exit loop");
diff --git a/xparts/mozilla/kmozillapart.h b/xparts/mozilla/kmozillapart.h
index 2455f5eb..a312d894 100644
--- a/xparts/mozilla/kmozillapart.h
+++ b/xparts/mozilla/kmozillapart.h
@@ -11,11 +11,11 @@ class KMozillaPart : public XPartHost_KPart
Q_OBJECT
public:
- KMozillaPart(TTQWidget *parentWidget, const char *widgetName,
- TTQObject *parent, const char *name, const TTQStringList &);
+ KMozillaPart(TQWidget *parentWidget, const char *widgetName,
+ TQObject *parent, const char *name, const TQStringList &);
virtual ~KMozillaPart();
- virtual void createActions( const TTQCString &xmlActions );
+ virtual void createActions( const TQCString &xmlActions );
static KAboutData *createAboutData();
diff --git a/xparts/mozilla/kshell.cpp b/xparts/mozilla/kshell.cpp
index 8277b02c..e3f87279 100644
--- a/xparts/mozilla/kshell.cpp
+++ b/xparts/mozilla/kshell.cpp
@@ -34,7 +34,7 @@ public:
KStdAction::quit( this, TQT_SLOT( close() ), actionCollection() );
KSelectAction *s = new KSelectAction( "http://www.kde.org" , 0,
actionCollection(), "location" );
- connect( s, TQT_SIGNAL(activated( const TTQString& ) ), this, TQT_SLOT( slotOpenUrl( const TTQString & ) ) );
+ connect( s, TQT_SIGNAL(activated( const TQString& ) ), this, TQT_SLOT( slotOpenUrl( const TQString & ) ) );
s->setEditable(true);
}
virtual ~ShellWindow()
@@ -42,7 +42,7 @@ public:
delete m_partProcess;
}
public slots:
- void slotOpenUrl( const TTQString &url )
+ void slotOpenUrl( const TQString &url )
{
kdDebug() << "this=" << this;
kdDebug() << "url=" << url << endl;