summaryrefslogtreecommitdiffstats
path: root/kbarcode/barcodedialogs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/barcodedialogs.cpp')
-rw-r--r--kbarcode/barcodedialogs.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/kbarcode/barcodedialogs.cpp b/kbarcode/barcodedialogs.cpp
index 676265c..9856689 100644
--- a/kbarcode/barcodedialogs.cpp
+++ b/kbarcode/barcodedialogs.cpp
@@ -39,9 +39,9 @@
#include <kcolorbutton.h>
-AdvancedBarcodeDialog::AdvancedBarcodeDialog( TQString type, TQWidget* tqparent, const char* name )
+AdvancedBarcodeDialog::AdvancedBarcodeDialog( TQString type, TQWidget* parent, const char* name )
: KDialogBase( KDialogBase::Tabbed, i18n("Barcode Settings"),
- KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, tqparent,name)
+ KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok, parent,name)
{
list.setAutoDelete( false );
@@ -100,8 +100,8 @@ void AdvancedBarcodeDialog::getData( Barkode* b )
}
}
-TBarcodeDlg::TBarcodeDlg(TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+TBarcodeDlg::TBarcodeDlg(TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
@@ -250,8 +250,8 @@ void TBarcodeDlg::getData( Barkode* b ) const
}
}
-PDF417BarcodeDlg::PDF417BarcodeDlg(TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+PDF417BarcodeDlg::PDF417BarcodeDlg(TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
@@ -304,8 +304,8 @@ void PDF417BarcodeDlg::getData( Barkode* b ) const
}
}
-DataMatrixDlg::DataMatrixDlg(TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+DataMatrixDlg::DataMatrixDlg(TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
TQHBoxLayout* datamLayout = new TQHBoxLayout( this, 6, 6 );
@@ -358,8 +358,8 @@ void DataMatrixDlg::getData( Barkode* b ) const
b->setDatamatrixSize( comboDataMatrix->currentItem() );
}
-SequenceDlg::SequenceDlg( TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name )
+SequenceDlg::SequenceDlg( TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
TQVBoxLayout* main = new TQVBoxLayout( this, 6, 6 );
@@ -438,8 +438,8 @@ void SequenceDlg::enableControls()
spinStart->setEnabled( checkSequence->isChecked() && radioNumbers->isChecked() );
}
-ColorDlg::ColorDlg(TQWidget *tqparent, const char *name)
- : TQVBox( tqparent, name )
+ColorDlg::ColorDlg(TQWidget *parent, const char *name)
+ : TQVBox( parent, name )
{
TQGroupBox* gb = new TQGroupBox( i18n("Colors"), this );
gb->setColumnLayout(0, Qt::Vertical );
@@ -474,8 +474,8 @@ void ColorDlg::getData( Barkode* b ) const
b->setTextColor( buttonTextColor->color() );
}
-PurePostscriptDlg::PurePostscriptDlg(TQWidget *tqparent, const char *name)
- : TQVBox( tqparent, name )
+PurePostscriptDlg::PurePostscriptDlg(TQWidget *parent, const char *name)
+ : TQVBox( parent, name )
{
TQVGroupBox* gb = new TQVGroupBox( i18n("Barcode Writer in Pure Postscript"), this );
gb->setEnabled( Barkode::havePurePostscriptBarcode() );