[Libreoffice] Advice needed about some 3.4 named range related problem

2012-01-13 Thread Noel Power
Hi Guys, We have a bug here in the suse system that highlights a regression attempting to resolve a range by name. Note: this is not a problem on master. the failing macro code is something like so; Sub test ProjectPlanSheet = ThisComponent.Sheets.getByName( "ProjectPlan" ) chkCellCo

Re: [Libreoffice] Advice needed about some 3.4 named range related problem

2012-01-13 Thread Markus Mohrhard
Hello Noel, 2012/1/13 Noel Power : > Hi Guys, > > We have a bug here in the suse system that highlights a regression > attempting to resolve a range by name. Note: this is not a problem on > master. > > the failing macro code is something like so; > > Sub test >    ProjectPlanSheet = ThisComponent

Re: [Libreoffice] Advice needed about some 3.4 named range related problem

2012-01-19 Thread Noel Power
Hi Markus On 13/01/12 18:27, Markus Mohrhard wrote: I think it makes sense to remove the findByName and replace them with findByUpperName. The findByName is error-prone and therefore I removed it for 3-5, internally we only use upper name (and in 3.5 we use it even to store the range name). I wil

Re: [Libreoffice] Advice needed about some 3.4 named range related problem

2012-01-19 Thread Markus Mohrhard
Hello Noel, >> I think it makes sense to remove the findByName and replace them with >> findByUpperName. The findByName is error-prone and therefore I removed >> it for 3-5, internally we only use upper name (and in 3.5 we use it >> even to store the range name). I will clean-up your patch a bit >