IDEMPIERE-1129 Missing MPrintFont constructor
This commit is contained in:
parent
c39ca2a5f1
commit
133b0027c8
|
@ -18,6 +18,7 @@ package org.compiere.print;
|
|||
|
||||
import java.awt.Font;
|
||||
import java.awt.GraphicsEnvironment;
|
||||
import java.sql.ResultSet;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
@ -53,6 +54,11 @@ public class MPrintFont extends X_AD_PrintFont
|
|||
if (AD_PrintFont_ID == 0)
|
||||
setIsDefault(false);
|
||||
} // MPrintFont
|
||||
|
||||
public MPrintFont(Properties ctx, ResultSet rs, String trxName)
|
||||
{
|
||||
super (ctx, rs, trxName);
|
||||
}
|
||||
|
||||
/** Font cached */
|
||||
private Font m_cacheFont = null;
|
||||
|
|
Loading…
Reference in New Issue