diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:22:52 +0900 |
| commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
| tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kspread/plugins/calculator/configdlg.cpp | |
| parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
| download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kspread/plugins/calculator/configdlg.cpp')
| -rw-r--r-- | kspread/plugins/calculator/configdlg.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kspread/plugins/calculator/configdlg.cpp b/kspread/plugins/calculator/configdlg.cpp index 202da13e1..d7f4432f1 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() |
