[isidorus-cvs] r675 - branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment

lgiessmann at common-lisp.net lgiessmann at common-lisp.net
Wed Jul 27 09:57:44 UTC 2011


Author: lgiessmann
Date: Wed Jul 27 02:57:44 2011
New Revision: 675

Log:
gdl-frontend: Widgets: fixed a bug when instantiating GdlActionButton

Modified:
   branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java

Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java	Wed Jul 27 01:28:57 2011	(r674)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/environment/GdlInstantiator.java	Wed Jul 27 02:57:44 2011	(r675)
@@ -53,8 +53,6 @@
 			return new GdlRadioButton(tmRepresentative);
 		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlCheckBox)){
 			return new GdlCheckBox(tmRepresentative);
-		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlActionButton)){
-			return new GdlActionButton(tmRepresentative);
 		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlValidateButton)){
 			return new GdlValidateButton(tmRepresentative);
 		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlCreateButton)){
@@ -63,6 +61,8 @@
 			return new GdlDeleteButton(tmRepresentative);
 		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlCommitButton)){
 			return new GdlCommitButton(tmRepresentative);
+		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlActionButton)){
+			return new GdlActionButton(tmRepresentative);
 		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlImage)){
 			return new GdlImage(tmRepresentative);
 		}else if(TmHelper.isInstanceOf(tmRepresentative, GdlPsis.TopicType.gdlVideo)){




More information about the Isidorus-cvs mailing list