From e63beeb5bdb82987b1e00bc35178667786fbad48 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Dec 2011 16:20:48 -0600 Subject: Fix incorrect conversion --- xparts/mozilla/kmozillapart.cpp | 6 +++--- xparts/mozilla/kmozillapart.h | 6 +++--- xparts/mozilla/kshell.cpp | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'xparts/mozilla') 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 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; -- cgit v1.2.1