summaryrefslogtreecommitdiffstats
path: root/kspread/plugins/calculator/configdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/plugins/calculator/configdlg.cpp')
-rw-r--r--kspread/plugins/calculator/configdlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kspread/plugins/calculator/configdlg.cpp b/kspread/plugins/calculator/configdlg.cpp
index 202da13e..d7f4432f 100644
--- a/kspread/plugins/calculator/configdlg.cpp
+++ b/kspread/plugins/calculator/configdlg.cpp
@@ -60,8 +60,8 @@ ConfigDlg::ConfigDlg(TQWidget *parent, const char *name, DefStruct *defstruct)
grid1->addWidget(button1,0,1);
button1->setColor( defst->forecolor );
- connect(button1 , TQT_SIGNAL( changed( const TQColor & ) ),
- this, TQT_SLOT( set_fore_color( const TQColor & ) ) );
+ connect(button1 , TQ_SIGNAL( changed( const TQColor & ) ),
+ this, TQ_SLOT( set_fore_color( const TQColor & ) ) );
label2 = new TQLabel(box);
grid1->addWidget(label2,1,0);
@@ -71,11 +71,11 @@ ConfigDlg::ConfigDlg(TQWidget *parent, const char *name, DefStruct *defstruct)
grid1->addWidget(button2,1,1);
button2->setColor( defst->backcolor );
- connect(button2 , TQT_SIGNAL( changed( const TQColor & ) ),
- this, TQT_SLOT( set_background_color( const TQColor & ) ) );
+ connect(button2 , TQ_SIGNAL( changed( const TQColor & ) ),
+ this, TQ_SLOT( set_background_color( const TQColor & ) ) );
- // connect(button2,TQT_SIGNAL(clicked()),this,TQT_SLOT(set_background_color()));
+ // connect(button2,TQ_SIGNAL(clicked()),this,TQ_SLOT(set_background_color()));
label5 = new TQLabel(box);
@@ -155,10 +155,10 @@ ConfigDlg::ConfigDlg(TQWidget *parent, const char *name, DefStruct *defstruct)
grid2->addWidget(button3,0,1);
button3->setText(i18n("Help"));
- connect(button3,TQT_SIGNAL(clicked()),this,TQT_SLOT(help()));
+ connect(button3,TQ_SIGNAL(clicked()),this,TQ_SLOT(help()));
lay1->addWidget(box);
- connect(parent,TQT_SIGNAL(applyButtonPressed()),TQT_SLOT(okButton()));
+ connect(parent,TQ_SIGNAL(applyButtonPressed()),TQ_SLOT(okButton()));
}
void ConfigDlg::help()