2010-11-09 17:16 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbexpat/hbexpat.hbp
! Deleted reference to non-existing header.
* contrib/hbzebra/hbzebra.hbp
* My latest change formatted differently.
* contrib/hbzebra/tests/test1.prg
+ Added SVN ID.
This commit is contained in:
@@ -16,6 +16,16 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2010-11-09 17:16 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbexpat/hbexpat.hbp
|
||||
! Deleted reference to non-existing header.
|
||||
|
||||
* contrib/hbzebra/hbzebra.hbp
|
||||
* My latest change formatted differently.
|
||||
|
||||
* contrib/hbzebra/tests/test1.prg
|
||||
+ Added SVN ID.
|
||||
|
||||
2010-11-09 18:00 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)
|
||||
* harbour/contrib/hbzebra/code128.c
|
||||
* pacified warning
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
-depfinish=expat
|
||||
|
||||
-instfile=inc:hbexpat.ch
|
||||
-instfile=inc:hbexpatx.ch
|
||||
|
||||
hbexpat.c
|
||||
hbexpatc.c
|
||||
|
||||
@@ -36,5 +36,5 @@ msi.c
|
||||
-depimplibd=cairo:cairo
|
||||
-depfinish=cairo
|
||||
|
||||
cairo.c{HBMK_HAS_CAIRO}
|
||||
../hbcairo/hbcairo.hbc{HBMK_HAS_CAIRO}
|
||||
{HBMK_HAS_CAIRO}cairo.c
|
||||
{HBMK_HAS_CAIRO}../hbcairo/hbcairo.hbc
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include "hbzebra.ch"
|
||||
#include "hbcairo.ch"
|
||||
|
||||
@@ -45,27 +49,27 @@ RETURN
|
||||
PROC DrawBarcode( hCairo, nY, nLineWidth, cType, cCode, nFlags )
|
||||
LOCAL hZebra
|
||||
IF cType == "EAN13"
|
||||
hZebra := hb_zebra_create_ean13( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_ean13( cCode, nFlags )
|
||||
ELSEIF cType == "EAN8"
|
||||
hZebra := hb_zebra_create_ean8( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_ean8( cCode, nFlags )
|
||||
ELSEIF cType == "UPCA"
|
||||
hZebra := hb_zebra_create_upca( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_upca( cCode, nFlags )
|
||||
ELSEIF cType == "UPCE"
|
||||
hZebra := hb_zebra_create_upce( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_upce( cCode, nFlags )
|
||||
ELSEIF cType == "CODE39"
|
||||
hZebra := hb_zebra_create_code39( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_code39( cCode, nFlags )
|
||||
ELSEIF cType == "ITF"
|
||||
hZebra := hb_zebra_create_itf( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_itf( cCode, nFlags )
|
||||
ELSEIF cType == "MSI"
|
||||
hZebra := hb_zebra_create_msi( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_msi( cCode, nFlags )
|
||||
ELSEIF cType == "CODABAR"
|
||||
hZebra := hb_zebra_create_codabar( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_codabar( cCode, nFlags )
|
||||
ELSEIF cType == "CODE93"
|
||||
hZebra := hb_zebra_create_code93( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_code93( cCode, nFlags )
|
||||
ELSEIF cType == "CODE11"
|
||||
hZebra := hb_zebra_create_code11( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_code11( cCode, nFlags )
|
||||
ELSEIF cType == "CODE128"
|
||||
hZebra := hb_zebra_create_code128( cCode, nFlags )
|
||||
hZebra := hb_zebra_create_code128( cCode, nFlags )
|
||||
ENDIF
|
||||
IF hZebra != NIL
|
||||
IF hb_zebra_geterror( hZebra ) == 0
|
||||
|
||||
Reference in New Issue
Block a user