summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 15:59:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 15:59:21 -0600
commitca3632fe39994cdf0d0820e086338f147b4dea17 (patch)
treeef7453bb715850ef0be9b67e160709573c2340f7
parent96cca9f72d3c7d35025ea174013bd3d1003dfc26 (diff)
downloadkbarcode-ca3632fe39994cdf0d0820e086338f147b4dea17.tar.gz
kbarcode-ca3632fe39994cdf0d0820e086338f147b4dea17.zip
Remove spurious TQ_OBJECT instances
-rw-r--r--fileplugin/kfile_kbarcode.h2
-rw-r--r--kbarcode/barcodecombo.h4
-rw-r--r--kbarcode/barcodedialog.h2
-rw-r--r--kbarcode/barcodedialogs.h14
-rw-r--r--kbarcode/barcodeprinterdlg.h2
-rw-r--r--kbarcode/batchwizard.h2
-rw-r--r--kbarcode/commands.h4
-rw-r--r--kbarcode/configdialog.h2
-rw-r--r--kbarcode/confwizard.h2
-rw-r--r--kbarcode/csvimportdlg.h2
-rw-r--r--kbarcode/databasebrowser.h2
-rw-r--r--kbarcode/definitiondialog.h4
-rw-r--r--kbarcode/documentitemdlg.h2
-rw-r--r--kbarcode/dsmainwindow.h2
-rw-r--r--kbarcode/dstextedit.h2
-rw-r--r--kbarcode/encodingcombo.h2
-rw-r--r--kbarcode/kactionmap.h2
-rw-r--r--kbarcode/kbarcode.h2
-rw-r--r--kbarcode/kbarcodesettings.h2
-rw-r--r--kbarcode/labeleditor.h2
-rw-r--r--kbarcode/mimesources.h2
-rw-r--r--kbarcode/multilineeditdlg.h2
-rw-r--r--kbarcode/mycanvasview.h4
-rw-r--r--kbarcode/mydatatable.h2
-rw-r--r--kbarcode/newlabel.h2
-rw-r--r--kbarcode/previewdialog.h2
-rw-r--r--kbarcode/printersettings.h2
-rw-r--r--kbarcode/printlabeldlg.h2
-rw-r--r--kbarcode/propertywidget.h20
-rw-r--r--kbarcode/rectsettingsdlg.h4
-rw-r--r--kbarcode/smalldialogs.h4
-rw-r--r--kbarcode/sqltables.h4
-rw-r--r--kbarcode/textlineedit.h2
-rw-r--r--kbarcode/tokendialog.h2
34 files changed, 56 insertions, 56 deletions
diff --git a/fileplugin/kfile_kbarcode.h b/fileplugin/kfile_kbarcode.h
index 7a8c7b4..2ac3a4c 100644
--- a/fileplugin/kfile_kbarcode.h
+++ b/fileplugin/kfile_kbarcode.h
@@ -12,7 +12,7 @@ class TQStringList;
class KBarcodePlugin: public KFilePlugin
{
Q_OBJECT
- TQ_OBJECT
+
public:
KBarcodePlugin( TQObject *parent, const char *name, const TQStringList& args );
diff --git a/kbarcode/barcodecombo.h b/kbarcode/barcodecombo.h
index f6b9d68..4b0c645 100644
--- a/kbarcode/barcodecombo.h
+++ b/kbarcode/barcodecombo.h
@@ -55,7 +55,7 @@ class BarcodeValidator : public TQValidator {
*/
class BarcodeCombo : public KComboBox {
Q_OBJECT
- TQ_OBJECT
+
public:
BarcodeCombo(TQWidget *parent=0, const char *name=0);
~BarcodeCombo();
@@ -81,7 +81,7 @@ class TQLabel;
*/
class BarcodeWidget : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
BarcodeWidget(TQWidget *parent=0, const char *name=0);
~BarcodeWidget() { }
diff --git a/kbarcode/barcodedialog.h b/kbarcode/barcodedialog.h
index 845ef29..ff1c255 100644
--- a/kbarcode/barcodedialog.h
+++ b/kbarcode/barcodedialog.h
@@ -48,7 +48,7 @@ class TokenProvider;
class BarCodeDialog : public TQDialog
{
Q_OBJECT
- TQ_OBJECT
+
public:
BarCodeDialog( TQWidget* parent = 0, const char* name = 0 );
diff --git a/kbarcode/barcodedialogs.h b/kbarcode/barcodedialogs.h
index 19eb456..5f2b9b6 100644
--- a/kbarcode/barcodedialogs.h
+++ b/kbarcode/barcodedialogs.h
@@ -56,7 +56,7 @@ class BarcodeDlgBase {
*/
class AdvancedBarcodeDialog : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
AdvancedBarcodeDialog( TQString type, TQWidget* parent = 0, const char* name = 0 );
~AdvancedBarcodeDialog();
@@ -73,7 +73,7 @@ class AdvancedBarcodeDialog : public KDialogBase {
*/
class TBarcodeDlg : public TQWidget, public BarcodeDlgBase {
Q_OBJECT
- TQ_OBJECT
+
public:
TBarcodeDlg(TQWidget *parent=0, const char *name=0);
@@ -96,7 +96,7 @@ class TBarcodeDlg : public TQWidget, public BarcodeDlgBase {
*/
class PDF417BarcodeDlg : public TQWidget, public BarcodeDlgBase {
Q_OBJECT
- TQ_OBJECT
+
public:
PDF417BarcodeDlg(TQWidget *parent=0, const char *name=0);
@@ -114,7 +114,7 @@ class PDF417BarcodeDlg : public TQWidget, public BarcodeDlgBase {
*/
class DataMatrixDlg : public TQWidget, public BarcodeDlgBase {
Q_OBJECT
- TQ_OBJECT
+
public:
DataMatrixDlg(TQWidget *parent=0, const char *name=0);
@@ -130,7 +130,7 @@ class DataMatrixDlg : public TQWidget, public BarcodeDlgBase {
*/
class SequenceDlg : public TQWidget, public BarcodeDlgBase {
Q_OBJECT
- TQ_OBJECT
+
public:
SequenceDlg(TQWidget *parent=0, const char *name=0);
@@ -155,7 +155,7 @@ class SequenceDlg : public TQWidget, public BarcodeDlgBase {
*/
class ColorDlg : public TQVBox, public BarcodeDlgBase {
Q_OBJECT
- TQ_OBJECT
+
public:
ColorDlg(TQWidget *parent=0, const char *name=0);
@@ -173,7 +173,7 @@ class ColorDlg : public TQVBox, public BarcodeDlgBase {
*/
class PurePostscriptDlg : public TQVBox, public BarcodeDlgBase {
Q_OBJECT
- TQ_OBJECT
+
public:
PurePostscriptDlg(TQWidget *parent=0, const char *name=0);
diff --git a/kbarcode/barcodeprinterdlg.h b/kbarcode/barcodeprinterdlg.h
index 5680113..4cd60d4 100644
--- a/kbarcode/barcodeprinterdlg.h
+++ b/kbarcode/barcodeprinterdlg.h
@@ -30,7 +30,7 @@ class TQLabel;
class BarcodePrinterDlg : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
BarcodePrinterDlg(TQWidget *parent = 0, const char *name = 0);
~BarcodePrinterDlg();
diff --git a/kbarcode/batchwizard.h b/kbarcode/batchwizard.h
index c0d6094..a4233ea 100644
--- a/kbarcode/batchwizard.h
+++ b/kbarcode/batchwizard.h
@@ -43,7 +43,7 @@ class TQWidgetStack;
class BatchWizard : public KWizard, public BatchIface {
Q_OBJECT
- TQ_OBJECT
+
public:
BatchWizard( TQWidget* parent = NULL, const char* name = NULL );
~BatchWizard();
diff --git a/kbarcode/commands.h b/kbarcode/commands.h
index bee18c9..ea7edc4 100644
--- a/kbarcode/commands.h
+++ b/kbarcode/commands.h
@@ -54,7 +54,7 @@ class TokenProvider;
class CommandUtils : public TQObject {
Q_OBJECT
- TQ_OBJECT
+
public:
CommandUtils(TCanvasItem* item);
~CommandUtils();
@@ -82,7 +82,7 @@ class CommandUtils : public TQObject {
*/
class NewItemCommand : public TQObject, public KCommand {
Q_OBJECT
- TQ_OBJECT
+
public:
NewItemCommand( MyCanvasView* view, const TQString & name );
virtual ~NewItemCommand();
diff --git a/kbarcode/configdialog.h b/kbarcode/configdialog.h
index 151c86f..d70d6fa 100644
--- a/kbarcode/configdialog.h
+++ b/kbarcode/configdialog.h
@@ -39,7 +39,7 @@ class SqlWidget;
class ConfigDialog : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
ConfigDialog( TQWidget* parent );
~ConfigDialog();
diff --git a/kbarcode/confwizard.h b/kbarcode/confwizard.h
index d6a39a1..736a96a 100644
--- a/kbarcode/confwizard.h
+++ b/kbarcode/confwizard.h
@@ -38,7 +38,7 @@ class SqlWidget;
class ConfWizard : public KWizard
{
Q_OBJECT
- TQ_OBJECT
+
public:
ConfWizard( TQWidget* parent = 0, const char* name = 0, bool modal = true );
diff --git a/kbarcode/csvimportdlg.h b/kbarcode/csvimportdlg.h
index 675da4a..b4cec6f 100644
--- a/kbarcode/csvimportdlg.h
+++ b/kbarcode/csvimportdlg.h
@@ -46,7 +46,7 @@ class TQRadioButton;
*/
class CSVImportDlg : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
CSVImportDlg(TQWidget *parent=0, const char *name=0);
~CSVImportDlg();
diff --git a/kbarcode/databasebrowser.h b/kbarcode/databasebrowser.h
index af6ce19..32592d2 100644
--- a/kbarcode/databasebrowser.h
+++ b/kbarcode/databasebrowser.h
@@ -32,7 +32,7 @@ class MyDataTable;
*/
class DatabaseBrowser : public DSMainWindow{
Q_OBJECT
- TQ_OBJECT
+
public:
DatabaseBrowser( TQString _database, TQWidget *parent=0, const char *name=0);
~DatabaseBrowser();
diff --git a/kbarcode/definitiondialog.h b/kbarcode/definitiondialog.h
index ff81102..b8f8e70 100644
--- a/kbarcode/definitiondialog.h
+++ b/kbarcode/definitiondialog.h
@@ -21,7 +21,7 @@ class TQPaintEvent;
*/
class LabelPreview : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
LabelPreview( TQWidget* parent = 0, const char* name = 0 );
~LabelPreview();
@@ -45,7 +45,7 @@ class LabelPreview : public TQWidget {
class DefinitionDialog : public TQDialog
{
Q_OBJECT
- TQ_OBJECT
+
public:
DefinitionDialog( TQWidget* parent = 0, const char* name = 0, bool modal = true, WFlags fl = 0 );
diff --git a/kbarcode/documentitemdlg.h b/kbarcode/documentitemdlg.h
index 35abed0..e92f239 100644
--- a/kbarcode/documentitemdlg.h
+++ b/kbarcode/documentitemdlg.h
@@ -28,7 +28,7 @@ class KCommandHistory;
class DocumentItemDlg : public KDialogBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
DocumentItemDlg( TokenProvider* token, DocumentItem* item, KCommandHistory* history, TQWidget* parent );
~DocumentItemDlg();
diff --git a/kbarcode/dsmainwindow.h b/kbarcode/dsmainwindow.h
index 698e237..1622c13 100644
--- a/kbarcode/dsmainwindow.h
+++ b/kbarcode/dsmainwindow.h
@@ -32,7 +32,7 @@ class KPopupMenu;
*/
class DSMainWindow : public KMainWindow {
Q_OBJECT
- TQ_OBJECT
+
public:
DSMainWindow(TQWidget *parent=0, const char *name=0, WFlags f = WType_TopLevel | WDestructiveClose );
~DSMainWindow();
diff --git a/kbarcode/dstextedit.h b/kbarcode/dstextedit.h
index 6044e31..92d111a 100644
--- a/kbarcode/dstextedit.h
+++ b/kbarcode/dstextedit.h
@@ -27,7 +27,7 @@
class DSTextEdit : public TextEditBase {
Q_OBJECT
- TQ_OBJECT
+
public:
DSTextEdit( TQWidget* parent, const char* name = 0 );
diff --git a/kbarcode/encodingcombo.h b/kbarcode/encodingcombo.h
index 290521b..015b016 100644
--- a/kbarcode/encodingcombo.h
+++ b/kbarcode/encodingcombo.h
@@ -22,7 +22,7 @@
class EncodingCombo : public KComboBox {
Q_OBJECT
- TQ_OBJECT
+
public:
EncodingCombo( TQWidget* parent );
~EncodingCombo();
diff --git a/kbarcode/kactionmap.h b/kbarcode/kactionmap.h
index 69e5ea4..5094172 100644
--- a/kbarcode/kactionmap.h
+++ b/kbarcode/kactionmap.h
@@ -68,7 +68,7 @@ class KActionMapDlg : public KDialogBase {
*/
class KActionMap : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
/** Creates a new KActionMap widget
* @param action all actions from this KActionCollection are displayed.
diff --git a/kbarcode/kbarcode.h b/kbarcode/kbarcode.h
index 50ee1e2..349b72f 100644
--- a/kbarcode/kbarcode.h
+++ b/kbarcode/kbarcode.h
@@ -44,7 +44,7 @@ class KPushButton;
*/
class KBarcode: public DSMainWindow, public KBarcodeIface {
Q_OBJECT
- TQ_OBJECT
+
public:
KBarcode( TQWidget *parent=0, const char *name="kbarcode", WFlags f = WType_TopLevel | WDestructiveClose );
~KBarcode();
diff --git a/kbarcode/kbarcodesettings.h b/kbarcode/kbarcodesettings.h
index 46abc5c..4d1ea12 100644
--- a/kbarcode/kbarcodesettings.h
+++ b/kbarcode/kbarcodesettings.h
@@ -29,7 +29,7 @@
class KBarcodeSettings : public TQObject
{
Q_OBJECT
- TQ_OBJECT
+
public:
static KBarcodeSettings* getInstance();
diff --git a/kbarcode/labeleditor.h b/kbarcode/labeleditor.h
index a0fc113..0702e46 100644
--- a/kbarcode/labeleditor.h
+++ b/kbarcode/labeleditor.h
@@ -81,7 +81,7 @@ class TokenProvider;
*/
class LabelEditor : public DSMainWindow, public EditorIface, private LabelUtils, private XMLUtils {
Q_OBJECT
- TQ_OBJECT
+
public:
enum ELabelEditorMode {
eCreateNewLabel,
diff --git a/kbarcode/mimesources.h b/kbarcode/mimesources.h
index 5790efd..13c1839 100644
--- a/kbarcode/mimesources.h
+++ b/kbarcode/mimesources.h
@@ -27,7 +27,7 @@ class MyCanvasView;
class DocumentItemDrag : public TQStoredDrag {
Q_OBJECT
- TQ_OBJECT
+
public:
DocumentItemDrag( TQWidget* dragSource = NULL, const char* name = 0 );
diff --git a/kbarcode/multilineeditdlg.h b/kbarcode/multilineeditdlg.h
index f965bc8..ac09d1e 100644
--- a/kbarcode/multilineeditdlg.h
+++ b/kbarcode/multilineeditdlg.h
@@ -33,7 +33,7 @@ class TokenProvider;
class MultiLineEditor : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
MultiLineEditor( TokenProvider* token, TQWidget *parent=0, const char *name=0);
~MultiLineEditor();
diff --git a/kbarcode/mycanvasview.h b/kbarcode/mycanvasview.h
index 5f15eda..ec917e7 100644
--- a/kbarcode/mycanvasview.h
+++ b/kbarcode/mycanvasview.h
@@ -31,7 +31,7 @@ class TQRect;
class TQPainter;
class MyCanvas : public TQCanvas {
Q_OBJECT
- TQ_OBJECT
+
public:
MyCanvas( TQObject* parent, const char* name = 0 );
@@ -70,7 +70,7 @@ class KStatusBar;
class MyCanvasView : public TQCanvasView
{
Q_OBJECT
- TQ_OBJECT
+
enum edges {
TopLeft,
diff --git a/kbarcode/mydatatable.h b/kbarcode/mydatatable.h
index 6952273..e476856 100644
--- a/kbarcode/mydatatable.h
+++ b/kbarcode/mydatatable.h
@@ -25,7 +25,7 @@
*/
class MyDataTable : public TQDataTable {
Q_OBJECT
- TQ_OBJECT
+
public:
MyDataTable(TQWidget *parent=0, const char *name=0);
~MyDataTable();
diff --git a/kbarcode/newlabel.h b/kbarcode/newlabel.h
index ddaa8d2..2194269 100644
--- a/kbarcode/newlabel.h
+++ b/kbarcode/newlabel.h
@@ -36,7 +36,7 @@ class LabelPreview;
class NewLabel : public TQDialog
{
Q_OBJECT
- TQ_OBJECT
+
public:
NewLabel( TQWidget* parent = 0, const char* name = 0, bool change = FALSE, WFlags fl = 0 );
~NewLabel();
diff --git a/kbarcode/previewdialog.h b/kbarcode/previewdialog.h
index 6585d32..5468377 100644
--- a/kbarcode/previewdialog.h
+++ b/kbarcode/previewdialog.h
@@ -31,7 +31,7 @@ class TQLabel;
class TQWidget;
class PreviewDialog : public TQDialog {
Q_OBJECT
- TQ_OBJECT
+
public:
PreviewDialog( TQIODevice* device, Definition* d, TQString filename, TQWidget *parent=0, const char *name=0);
~PreviewDialog();
diff --git a/kbarcode/printersettings.h b/kbarcode/printersettings.h
index 12fd47f..765cf08 100644
--- a/kbarcode/printersettings.h
+++ b/kbarcode/printersettings.h
@@ -59,7 +59,7 @@ class KPrinter;
class KComboBox;
class PrinterSettings: public TQObject {
Q_OBJECT
- TQ_OBJECT
+
public:
enum { High = TQPrinter::HighResolution, Middle, VeryHigh };
enum { TEC, ZEBRA, INTERMEC, EPCL };
diff --git a/kbarcode/printlabeldlg.h b/kbarcode/printlabeldlg.h
index 0b513f4..5d5ce25 100644
--- a/kbarcode/printlabeldlg.h
+++ b/kbarcode/printlabeldlg.h
@@ -33,7 +33,7 @@ class KIntNumInput;
*/
class PrintLabelDlg : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
PrintLabelDlg(TQWidget *parent=0, const char *name=0);
~PrintLabelDlg();
diff --git a/kbarcode/propertywidget.h b/kbarcode/propertywidget.h
index 7398964..ebc32cf 100644
--- a/kbarcode/propertywidget.h
+++ b/kbarcode/propertywidget.h
@@ -49,7 +49,7 @@ class KPushButton;
class PropertyWidget : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyWidget( TQWidget* parent );
@@ -62,7 +62,7 @@ class PropertyWidget : public TQWidget
class PropertyBorder : public PropertyWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyBorder( TQWidget* parent );
@@ -81,7 +81,7 @@ class PropertyBorder : public PropertyWidget {
class PropertyRotation : public PropertyWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyRotation( TQWidget* parent );
@@ -94,7 +94,7 @@ class PropertyRotation : public PropertyWidget {
class PropertyFill : public PropertyWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyFill( TQWidget* parent );
@@ -107,7 +107,7 @@ class PropertyFill : public PropertyWidget {
class PropertyBarcode : public PropertyWidget, private LabelUtils {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyBarcode( TokenProvider* token, TQWidget* parent );
@@ -124,7 +124,7 @@ class PropertyBarcode : public PropertyWidget, private LabelUtils {
class PropertyText : public PropertyWidget, private LabelUtils {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyText( TokenProvider* token, TQWidget* parent );
@@ -138,7 +138,7 @@ class PropertyText : public PropertyWidget, private LabelUtils {
//NY22
class PropertyTextLine : public PropertyWidget, private LabelUtils {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyTextLine( TokenProvider* token, TQWidget* parent );
@@ -152,7 +152,7 @@ class PropertyTextLine : public PropertyWidget, private LabelUtils {
class PropertySize : public PropertyWidget, private LabelUtils {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertySize( TQWidget* parent );
@@ -172,7 +172,7 @@ class PropertySize : public PropertyWidget, private LabelUtils {
class PropertyImage : public PropertyWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyImage( TokenProvider* token, TQWidget* parent );
@@ -206,7 +206,7 @@ class PropertyImage : public PropertyWidget {
class PropertyVisible : public PropertyWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
PropertyVisible( TQWidget* parent );
diff --git a/kbarcode/rectsettingsdlg.h b/kbarcode/rectsettingsdlg.h
index 3e1ea13..2a88169 100644
--- a/kbarcode/rectsettingsdlg.h
+++ b/kbarcode/rectsettingsdlg.h
@@ -26,7 +26,7 @@ class KIntNumInput;
class TQCheckBox;
class RectSettingsDlg : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
RectSettingsDlg(TQWidget *parent=0, const char *name=0);
~RectSettingsDlg();
@@ -57,7 +57,7 @@ class RectSettingsDlg : public KDialogBase {
class TQPen;
class LineSettingsDlg : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
LineSettingsDlg(TQWidget *parent=0, const char *name=0);
~LineSettingsDlg();
diff --git a/kbarcode/smalldialogs.h b/kbarcode/smalldialogs.h
index 3805231..f4183e7 100644
--- a/kbarcode/smalldialogs.h
+++ b/kbarcode/smalldialogs.h
@@ -29,7 +29,7 @@ namespace DSSmallDialogs {
class AddAllDialog : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
AddAllDialog(TQWidget *parent=0, const char *name=0);
@@ -43,7 +43,7 @@ namespace DSSmallDialogs {
class AddItemsDialog : public KDialogBase {
Q_OBJECT
- TQ_OBJECT
+
public:
AddItemsDialog( TQWidget* parent = 0, const char* name = 0 );
AddItemsDialog( const TQString & a, const TQString & g, int c, TQWidget* parent = 0, const char* name = 0 );
diff --git a/kbarcode/sqltables.h b/kbarcode/sqltables.h
index 3931a6d..8c7d001 100644
--- a/kbarcode/sqltables.h
+++ b/kbarcode/sqltables.h
@@ -90,7 +90,7 @@ class TQSqlQuery;
*/
class SqlTables : public TQObject {
Q_OBJECT
- TQ_OBJECT
+
public:
/** get a mysqldata object which contains the current database settings.
* this object is for all sql databases, not only for mysql. The name is just a
@@ -181,7 +181,7 @@ class TQCheckBox;
*/
class SqlWidget : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
SqlWidget( bool showlabel, TQWidget* parent = 0, const char* name = 0 );
~SqlWidget();
diff --git a/kbarcode/textlineedit.h b/kbarcode/textlineedit.h
index aa88825..4d23c55 100644
--- a/kbarcode/textlineedit.h
+++ b/kbarcode/textlineedit.h
@@ -30,7 +30,7 @@ class KLineEdit;
class TextLineEditor : public TQWidget {
Q_OBJECT
- TQ_OBJECT
+
public:
TextLineEditor( TokenProvider* token, TQWidget *parent=0, const char *name=0);
~TextLineEditor();
diff --git a/kbarcode/tokendialog.h b/kbarcode/tokendialog.h
index 8b02235..666e405 100644
--- a/kbarcode/tokendialog.h
+++ b/kbarcode/tokendialog.h
@@ -40,7 +40,7 @@ class DSTextEdit;
class TokenDialog : public KWizard {
Q_OBJECT
- TQ_OBJECT
+
public:
TokenDialog( TokenProvider* token, TQWidget *parent = 0, const char *name = 0 );