diff options
Diffstat (limited to 'kexi/core/kexicontexthelp.cpp')
-rw-r--r-- | kexi/core/kexicontexthelp.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/core/kexicontexthelp.cpp b/kexi/core/kexicontexthelp.cpp index 4ccfa2fe..48bf6b51 100644 --- a/kexi/core/kexicontexthelp.cpp +++ b/kexi/core/kexicontexthelp.cpp @@ -23,21 +23,21 @@ #include <kapplication.h> #include <klocale.h> #include <kaction.h> -#include <qlayout.h> +#include <tqlayout.h> #include <kdebug.h> #include <kiconloader.h> -KexiContextHelp::KexiContextHelp(KexiMainWindow *view, QWidget *parent) - :KoContextHelpWidget(parent,"kexi_contexthelp") +KexiContextHelp::KexiContextHelp(KexiMainWindow *view, TQWidget *tqparent) + :KoContextHelpWidget(tqparent,"kexi_contexthelp") { kdDebug()<<"KexiContextHelp::KexiContextHelp()"<<endl; setCaption(i18n("Context Help")); setIcon(SmallIcon("help")); - connect(this,SIGNAL(linkClicked( const QString& )), - this,SLOT(linkClickedInternal( const QString& ))); + connect(this,TQT_SIGNAL(linkClicked( const TQString& )), + this,TQT_SLOT(linkClickedInternal( const TQString& ))); } -void KexiContextHelp::linkClickedInternal(const QString& link) { +void KexiContextHelp::linkClickedInternal(const TQString& link) { kdDebug()<<"KexiContextHelp: Link: "<<link<<endl; unhandledLink(link); } |