diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-09 17:28:55 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-09 17:29:15 -0400 |
commit | 5ad1627bf03b6c6c94b63b954725ddc795d6b58c (patch) | |
tree | 796fd74d7df604bf6467a2efc26c4f6fc86efa49 /sc/qa | |
parent | c309f03e03d2bb2ab75d1632840e615699dbaf2a (diff) |
More on windows link error.
Change-Id: I01a62d48b3913f68ffd2dfc1c30a36aa0ebbe68a
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/helper/qahelper.cxx | 4 | ||||
-rw-r--r-- | sc/qa/unit/helper/qahelper.hxx | 3 |
2 files changed, 5 insertions, 2 deletions
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); |