diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:51:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:54:30 +0200 |
commit | 97b330f0164cb4600107db5c4f074d19333da820 (patch) | |
tree | ecdb0b88a840f3627e352bbd093ded6dd89025f6 /sal | |
parent | 365fea447d72be8c1c21de34fda3c1b13226a1cf (diff) |
loplugin:staticcall
Change-Id: Ia4111a0fb76c848d3bd2d01f3835995e4c007b6b
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/osl/file/osl_File.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index cbe905207cbe..8312ec357d29 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -2276,7 +2276,7 @@ namespace osl_File ::osl::FileBase::RC nError5 = testFile.close(); CPPUNIT_ASSERT( ::osl::FileBase::E_None == nError5 ); - ::osl::FileBase::RC nError6 = testFile.remove( aCanURL1 ); + ::osl::FileBase::RC nError6 = osl::File::remove( aCanURL1 ); CPPUNIT_ASSERT( ::osl::FileBase::E_None == nError6 ); CPPUNIT_ASSERT_MESSAGE( "test for open function: test for osl_File_OpenFlag_Read, osl_File_OpenFlag_Write and osl_File_OpenFlag_Create", |