mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 23:48:46 +00:00
* GSWeb/GSWRadioButtonList.m
Remove escapeHTML association assign (done in GSWInput) * GSWeb/GSWCheckBoxList.m Remove escapeHTML association assign (done in GSWInput) * GSWeb.framework/GSWInput.m Fix -init... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@37923 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e4480ba188
commit
3d0b3485fe
4 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2014-05-30 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWeb/GSWRadioButtonList.m
|
||||
Remove escapeHTML association assign (done in GSWInput)
|
||||
* GSWeb/GSWCheckBoxList.m
|
||||
Remove escapeHTML association assign (done in GSWInput)
|
||||
* GSWeb.framework/GSWInput.m
|
||||
Fix -init...
|
||||
2014-05-29 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* GSWDatabase/GSWHTMLDynamicElement.[hm]
|
||||
add -hasNonURLAttributes
|
||||
|
|
|
@ -99,7 +99,6 @@ static Class standardClass = Nil;
|
|||
GSWAssignAndRemoveAssociation(&_selections,_associations,selections__Key);
|
||||
GSWAssignAndRemoveAssociation(&_prefix,_associations,prefix__Key);
|
||||
GSWAssignAndRemoveAssociation(&_suffix,_associations,suffix__Key);
|
||||
GSWAssignAndRemoveAssociation(&_escapeHTML,_associations,escapeHTML__Key);
|
||||
GSWAssignAndRemoveAssociation(&_displayString,_associations,displayString__Key);
|
||||
|
||||
if (_displayString==nil)
|
||||
|
|
|
@ -55,9 +55,9 @@ static Class standardClass = Nil;
|
|||
associations:(NSDictionary*)associations
|
||||
template:(GSWElement*)template
|
||||
{
|
||||
if (([super initWithName:aName
|
||||
associations:associations
|
||||
template: template]))
|
||||
if ((self=[super initWithName:aName
|
||||
associations:associations
|
||||
template: template]))
|
||||
{
|
||||
GSWAssignAndRemoveAssociation(&_disabled,_associations,disabled__Key);
|
||||
GSWAssignAndRemoveAssociation(&_name,_associations,name__Key);
|
||||
|
|
|
@ -100,7 +100,6 @@ static Class standardClass = Nil;
|
|||
GSWAssignAndRemoveAssociation(&_selection,_associations,selection__Key);
|
||||
GSWAssignAndRemoveAssociation(&_prefix,_associations,prefix__Key);
|
||||
GSWAssignAndRemoveAssociation(&_displayString,_associations,displayString__Key);
|
||||
GSWAssignAndRemoveAssociation(&_escapeHTML,_associations,escapeHTML__Key);
|
||||
|
||||
if (_displayString == nil)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue