summaryrefslogtreecommitdiffstats
path: root/kbarcode/kbarcode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/kbarcode.cpp')
-rw-r--r--kbarcode/kbarcode.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kbarcode/kbarcode.cpp b/kbarcode/kbarcode.cpp
index fce7aa2..70317fa 100644
--- a/kbarcode/kbarcode.cpp
+++ b/kbarcode/kbarcode.cpp
@@ -64,28 +64,28 @@ KBarcode::KBarcode( TQWidget *parent, const char *name, WFlags f)
layout->addWidget( buttonBatch );
layout->addWidget( buttonData );
- connect( buttonSingle, TQT_SIGNAL( clicked() ), this, TQT_SLOT( startBarcode() ) );
- connect( buttonEditor, TQT_SIGNAL( clicked() ), this, TQT_SLOT( startLabelEditor() ) );
- connect( buttonBatch, TQT_SIGNAL( clicked() ), this, TQT_SLOT( startBatchPrint() ) );
- connect( SqlTables::getInstance(), TQT_SIGNAL( connectedSQL() ), this, TQT_SLOT( enableData() ) );
+ connect( buttonSingle, TQ_SIGNAL( clicked() ), this, TQ_SLOT( startBarcode() ) );
+ connect( buttonEditor, TQ_SIGNAL( clicked() ), this, TQ_SLOT( startLabelEditor() ) );
+ connect( buttonBatch, TQ_SIGNAL( clicked() ), this, TQ_SLOT( startBatchPrint() ) );
+ connect( SqlTables::getInstance(), TQ_SIGNAL( connectedSQL() ), this, TQ_SLOT( enableData() ) );
setupActions();
show();
TDEAction* editLabelDefAct = new TDEAction(i18n("&Edit Label Definitions"), "",
- 0, this, TQT_SLOT(editLabelDef()), actionCollection(), "design" );
+ 0, this, TQ_SLOT(editLabelDef()), actionCollection(), "design" );
TDEAction* editArticleAct = new TDEAction(i18n("&Edit Articles"), "",
- 0, this, TQT_SLOT(editArticles()), actionCollection(), "design" );
+ 0, this, TQ_SLOT(editArticles()), actionCollection(), "design" );
TDEAction* editCustomerAct = new TDEAction(i18n("&Edit Customers"), "",
- 0, this, TQT_SLOT(editCustomers()), actionCollection(), "design" );
+ 0, this, TQ_SLOT(editCustomers()), actionCollection(), "design" );
TDEAction* editCustomerTextAct = new TDEAction(i18n("&Edit Customer Text"), "",
- 0, this, TQT_SLOT(editCustomerText()), actionCollection() );
+ 0, this, TQ_SLOT(editCustomerText()), actionCollection() );
TDEAction* importCSVAct = new TDEAction(i18n("&Import CSV File..."), "",
- 0, this, TQT_SLOT(importCSV()), actionCollection() );
+ 0, this, TQ_SLOT(importCSV()), actionCollection() );
TDEPopupMenu* data = new TDEPopupMenu( buttonData );
editLabelDefAct->plug( data );