From c50e1bb2ceb8e62b06818f1f89d15c99c23eddde Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 Aug 2018 15:39:45 +0900 Subject: [PATCH] Fixed typedef-related warnings from compiler. Signed-off-by: Michele Calgaro --- kbarcode/barkode.h | 2 +- kbarcode/batchprinter.h | 2 +- kbarcode/printersettings.h | 4 ++-- kbarcode/sqltables.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/kbarcode/barkode.h b/kbarcode/barkode.h index 9c4bfd9..baeadb6 100644 --- a/kbarcode/barkode.h +++ b/kbarcode/barkode.h @@ -54,7 +54,7 @@ enum { NOCUT = 0x00001, MULTILINE = 0x00002, NOTEXT = 0x00004, NOSCALE = 0x00008 /** This structure holds information about a supported barcode encoding typedef */ -typedef struct tBarcodeInfo +struct tBarcodeInfo { /** the name which is stored for identification in the xml file * and used as commandline parameter for external tools diff --git a/kbarcode/batchprinter.h b/kbarcode/batchprinter.h index 6da5ca5..0eb5f02 100644 --- a/kbarcode/batchprinter.h +++ b/kbarcode/batchprinter.h @@ -46,7 +46,7 @@ typedef TQValueList< TQMap > TVariableList; class BatchPrinter { public: - typedef enum EOutputFormat { POSTSCRIPT = 0, IMAGE, BCP }; + enum EOutputFormat { POSTSCRIPT = 0, IMAGE, BCP }; enum EImageFileName { E_ARTICLE, E_BARCODE, E_CUSTOM }; struct data { diff --git a/kbarcode/printersettings.h b/kbarcode/printersettings.h index 765cf08..de339b8 100644 --- a/kbarcode/printersettings.h +++ b/kbarcode/printersettings.h @@ -24,7 +24,7 @@ class KURL; -typedef struct labelprinterdata { +struct labelprinterdata { int articleEvent1; int articleEvent2; int articleEvent3; @@ -46,7 +46,7 @@ typedef struct labelprinterdata { TQString quote; }; -typedef struct PageFormatInfo +struct PageFormatInfo { KPrinter::PageSize kprinter; const char* shortName; // Short name diff --git a/kbarcode/sqltables.h b/kbarcode/sqltables.h index 36c08ab..a9ea6fb 100644 --- a/kbarcode/sqltables.h +++ b/kbarcode/sqltables.h @@ -33,7 +33,7 @@ // Holds all information // necessary for connecting // to a database -typedef struct mysqldata { +struct mysqldata { TQString username; TQString password; TQString hostname; // localhost