summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opietoday/examplepluginwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/opietoday/examplepluginwidget.cpp')
-rw-r--r--languages/cpp/app_templates/opietoday/examplepluginwidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/app_templates/opietoday/examplepluginwidget.cpp b/languages/cpp/app_templates/opietoday/examplepluginwidget.cpp
index b0cb0dcc..a80dad81 100644
--- a/languages/cpp/app_templates/opietoday/examplepluginwidget.cpp
+++ b/languages/cpp/app_templates/opietoday/examplepluginwidget.cpp
@@ -3,8 +3,8 @@
#include "%{APPNAMELC}widget.h"
-%{APPNAME}Widget::%{APPNAME}Widget( QWidget *parent, const char* name)
- : QWidget(parent, name ) {
+%{APPNAME}Widget::%{APPNAME}Widget( TQWidget *parent, const char* name)
+ : TQWidget(parent, name ) {
m_exampleLabel = 0l;
m_layout = 0l;
@@ -17,12 +17,12 @@
// that should be triggered when clicked are defined in slotClicked()
// of course also normal widgets can be used.
m_exampleLabel = new OClickableLabel( this );
- connect( m_exampleLabel, SIGNAL( clicked() ), this, SLOT( slotClicked() ) );
+ connect( m_exampleLabel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotClicked() ) );
if ( m_layout ) {
delete m_layout;
}
- m_layout = new QHBoxLayout( this );
+ m_layout = new TQHBoxLayout( this );
m_layout->setAutoAdd( true );
readConfig();