|
From: <dom...@us...> - 2008-09-12 22:29:54
|
Revision: 51
http://kbarcode.svn.sourceforge.net/kbarcode/?rev=51&view=rev
Author: domseichter
Date: 2008-09-12 18:46:31 +0000 (Fri, 12 Sep 2008)
Log Message:
-----------
FIXED: A typo that was fixed in KBarcode3 CVS that prevented customer_text tables to work
Modified Paths:
--------------
trunk/src/label.cpp
Modified: trunk/src/label.cpp
===================================================================
--- trunk/src/label.cpp 2008-03-18 18:25:44 UTC (rev 50)
+++ trunk/src/label.cpp 2008-09-12 18:46:31 UTC (rev 51)
@@ -213,7 +213,7 @@
{
if( !query1.value(0).toString().isEmpty() )
{
- barcode->setValue( query.value(0).toString() );
+ barcode->setValue( query1.value(0).toString() );
barcode->setType( encoding_type );
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|