mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
6c5e68b1aa
- remove runtime dependency to graphics/barcode as kbarcode supports several backends and has a runtime detection with advice for the user PR: ports/95112 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
12 lines
506 B
C++
12 lines
506 B
C++
--- kbarcode/zplutils.cpp.orig Mon Mar 21 00:31:21 2005
|
|
+++ kbarcode/zplutils.cpp Thu Mar 16 12:27:36 2006
|
|
@@ -256,7 +256,7 @@
|
|
ipl += field( "<ESC>E3<CAN>" ); // choose format number 3
|
|
|
|
for( unsigned int i = 0; i < m_values.count(); i++ )
|
|
- ipl += field( m_values[i] + ( i != m_values.count() - 1 ? "<CR>" : QString::null ) );
|
|
+ ipl += field( m_values[i] + ( i != m_values.count() - 1 ? QString("<CR>") : QString::null ) );
|
|
|
|
// end actual data
|
|
ipl += field( "<ETB>" );
|