diff options
author | Noel Power <noel.power@suse.com> | 2013-05-10 17:21:54 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-05-15 11:00:38 +0100 |
commit | 07334f694e413eb2f4839dddfa6feb9fa6a908b0 (patch) | |
tree | 392ecd7931043e88877a80f3e1a098a43e2fb4a2 /oovbaapi | |
parent | 29f0c3dbe5a1266d0ef5df7fd144af3f3706cdc5 (diff) |
fix various problems with vba Names & Names objects
a) Name.Value attribute was read only
b) Name.[Get|Set]Value not working property
c) Name.ReferToR1C1xxx attributes not returning r1c1 related addresses
d) Names.Add just not working( should return a reference to the new Name )
e) Names.Add not handling multi-area addresses, not constructing the Content for the names correctly
cherry-picked from 566f52506e8e160540a3bcd0dc46f93e87e3155a
Change-Id: I6f3c1cf029d5e4003c5900a4e9525f5a0d9a8ed6
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/excel/XName.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oovbaapi/ooo/vba/excel/XName.idl b/oovbaapi/ooo/vba/excel/XName.idl index 379095b0c0c1..dc6ba1c1ee09 100644 --- a/oovbaapi/ooo/vba/excel/XName.idl +++ b/oovbaapi/ooo/vba/excel/XName.idl @@ -36,7 +36,7 @@ interface XName [attribute] string Name; [attribute] string NameLocal; [attribute] boolean Visible; - [attribute, readonly] string Value; + [attribute] string Value; [attribute, readonly] string RefersTo; [attribute, readonly] string RefersToLocal; [attribute, readonly] string RefersToR1C1; |