summaryrefslogtreecommitdiffstats
path: root/kexi/core/kexicontexthelp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/core/kexicontexthelp.cpp')
-rw-r--r--kexi/core/kexicontexthelp.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/core/kexicontexthelp.cpp b/kexi/core/kexicontexthelp.cpp
index 4ccfa2fee..48bf6b516 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);
}