[Erp5-report] r21110 - /erp5/trunk/products/ERP5/PropertySheet/HtmlStylePreference.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon May 26 09:55:26 CEST 2008
Author: jerome
Date: Mon May 26 09:55:24 2008
New Revision: 21110
URL: http://svn.erp5.org?rev=21110&view=rev
Log:
Some int properties were mistakenly defined as string.
Modified:
erp5/trunk/products/ERP5/PropertySheet/HtmlStylePreference.py
Modified: erp5/trunk/products/ERP5/PropertySheet/HtmlStylePreference.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/PropertySheet/HtmlStylePreference.py?rev=21110&r1=21109&r2=21110&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/PropertySheet/HtmlStylePreference.py (original)
+++ erp5/trunk/products/ERP5/PropertySheet/HtmlStylePreference.py Mon May 26 09:55:24 2008
@@ -63,27 +63,27 @@
'mode' : 'w' },
{ 'id' : 'preferred_string_field_width',
'description' : 'The default width of string fields',
- 'type' : 'string',
+ 'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_textarea_width',
'description' : 'The default width of text area fields',
- 'type' : 'string',
+ 'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_textarea_height',
'description' : 'The default height of text area fields',
- 'type' : 'string',
+ 'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_money_quantity_field_width',
'description' : 'The default width of fields displaying amounts of money',
- 'type' : 'string',
+ 'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_quantity_field_width',
'description' : 'The default width of quantity fields',
- 'type' : 'string',
+ 'type' : 'int',
'preference' : 1,
'mode' : 'w' },
{ 'id' : 'preferred_listbox_view_mode_line_count',
More information about the Erp5-report
mailing list