From 8eb85d95fd9a787736dcccb5c721af7810550a21 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 18 Jul 2011 11:21:31 -0400 Subject: I'm sure this is meant to be CalcComponent instead of WriterComponent. --- sc/qa/unit/filters-test.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/qa') diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx index 288249ca8259..58189b0c3336 100644 --- a/sc/qa/unit/filters-test.cxx +++ b/sc/qa/unit/filters-test.cxx @@ -89,7 +89,7 @@ public: private: uno::Reference m_xContext; uno::Reference m_xFactory; - uno::Reference m_xWriterComponent; + uno::Reference m_xCalcComponent; ::rtl::OUString m_aSrcRoot; }; @@ -221,10 +221,10 @@ FiltersTest::FiltersTest() //This is a bit of a fudge, we do this to ensure that ScGlobals::ensure, //which is a private symbol to us, gets called - m_xWriterComponent = + m_xCalcComponent = xSM->createInstance(rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.Calc.SpreadsheetDocument"))); - CPPUNIT_ASSERT_MESSAGE("no calc component!", m_xWriterComponent.is()); + CPPUNIT_ASSERT_MESSAGE("no calc component!", m_xCalcComponent.is()); const char* pSrcRoot = getenv( "SRC_ROOT" ); CPPUNIT_ASSERT_MESSAGE("SRC_ROOT env variable not set", pSrcRoot != NULL && pSrcRoot[0] != 0); -- cgit