# HG changeset patch
# User laurent
# Date 1326045881 -3600
# Node ID 71a824446673d6e2e33c79c0ce1e1d21851f32cb
# Parent  94417ab25510a49c1ec0401f291fb73c398920a6
Adding support for drag'n dropping located variables from topology panel to configurations and resources variable panel for declaring global located variables

diff -r 94417ab25510 -r 71a824446673 LPCBeremiz.py
--- a/LPCBeremiz.py	Wed Dec 21 19:43:40 2011 +0100
+++ b/LPCBeremiz.py	Sun Jan 08 19:04:41 2012 +0100
@@ -221,6 +221,7 @@
                     "type": infos["type"],
                     "size": size,
                     "IEC_type": infos["IEC_type"],
+                    "var_name": infos["name"],
                     "location": location,
                     "description": infos["description"],
                     "children": []}
diff -r 94417ab25510 -r 71a824446673 plugins/c_ext/c_ext.py
--- a/plugins/c_ext/c_ext.py	Wed Dec 21 19:43:40 2011 +0100
+++ b/plugins/c_ext/c_ext.py	Sun Jan 08 19:04:41 2012 +0100
@@ -104,6 +104,7 @@
                          "type": var_class,
                          "size": var_size,
                          "IEC_type": var.gettype(),
+                         "var_name": var.getname(),
                          "location": var_location,
                          "description": "",
                          "children": []})