From 5ad1627bf03b6c6c94b63b954725ddc795d6b58c Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 9 Jul 2013 17:28:55 -0400 Subject: More on windows link error. Change-Id: I01a62d48b3913f68ffd2dfc1c30a36aa0ebbe68a --- sc/qa/unit/helper/qahelper.cxx | 4 +++- sc/qa/unit/helper/qahelper.hxx | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'sc/qa') diff --git a/sc/qa/unit/helper/qahelper.cxx b/sc/qa/unit/helper/qahelper.cxx index 8cf45f5c71d8..9583f04e0daf 100644 --- a/sc/qa/unit/helper/qahelper.cxx +++ b/sc/qa/unit/helper/qahelper.cxx @@ -7,7 +7,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#undef SC_DLLIMPLEMENTATION #include "qahelper.hxx" #include "csv_handler.hxx" @@ -167,6 +166,9 @@ const FileFormat* ScBootstrapFixture::getFileFormats() return aFileFormats; } +ScBootstrapFixture::ScBootstrapFixture( const OUString& rsBaseString ) : m_aBaseString( rsBaseString ) {} +ScBootstrapFixture::~ScBootstrapFixture() {} + void ScBootstrapFixture::createFileURL( const OUString& aFileBase, const OUString& aFileExtension, OUString& rFilePath) { diff --git a/sc/qa/unit/helper/qahelper.hxx b/sc/qa/unit/helper/qahelper.hxx index 66119f23a6ae..9c1594efd961 100644 --- a/sc/qa/unit/helper/qahelper.hxx +++ b/sc/qa/unit/helper/qahelper.hxx @@ -141,7 +141,8 @@ protected: public: static const FileFormat* getFileFormats(); - ScBootstrapFixture( const OUString& rsBaseString ) : m_aBaseString( rsBaseString ) {} + ScBootstrapFixture( const OUString& rsBaseString ); + ~ScBootstrapFixture(); void createFileURL(const OUString& aFileBase, const OUString& aFileExtension, OUString& rFilePath); -- cgit