diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-10-07 23:32:09 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-10-07 23:34:58 +0200 |
commit | fed75d001e6a48a84bc46606848af3ba0219df29 (patch) | |
tree | 5c9fbcd2fc80fa1127a728a36cbe14dee5686ce1 | |
parent | aa09a9b77d10145ecc0dc0111c7235d869a428a8 (diff) |
set the correct url for vba unit test
it seems like the method name is the same as the module name
unit test still crashs because it can't find XSpreadsheetView but works
in general
-rw-r--r-- | sc/qa/unit/filters-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx index 3e80c374fab1..4a56ce18ffcc 100644 --- a/sc/qa/unit/filters-test.cxx +++ b/sc/qa/unit/filters-test.cxx @@ -618,7 +618,7 @@ void ScFiltersTest::testVba() //it seems that the basic ide does it differently, but then we would need to init all parts ourself //the problem is that CallXScript inits the basic part ////BasicIDE::RunMethod takes an SbMethod as parametre - rtl::OUString aURL(RTL_CONSTASCII_USTRINGPARAM("vnd.sun.Star.script:VBAProject.Modul1.macro1?language=Basic&location=document")); + rtl::OUString aURL(RTL_CONSTASCII_USTRINGPARAM("vnd.sun.Star.script:VBAProject.Modul1.Modul1?language=Basic&location=document")); String sUrl = aURL; Any aRet; Sequence< sal_Int16 > aOutParamIndex; |