diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-17 09:52:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-17 09:52:52 +0200 |
commit | 8cb4a74de40973006e569f25958bd7585ddfc3e4 (patch) | |
tree | 4c4bd653271848ac507dc3133b5673e67c4d83fc /xmloff | |
parent | d5de00cc73ca6b60f586c13f22d7b78470984dea (diff) |
loplugin:staticcall
Change-Id: I0e35e3e6b7540fb1b8a65b034095d2b1fe80715f
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/qa/unit/tokenmap-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/qa/unit/tokenmap-test.cxx b/xmloff/qa/unit/tokenmap-test.cxx index 8a05eb1a1211..74a04a0cd2fd 100644 --- a/xmloff/qa/unit/tokenmap-test.cxx +++ b/xmloff/qa/unit/tokenmap-test.cxx @@ -40,7 +40,7 @@ void TokenmapTest::test_roundTrip() { // check that the getIdentifier <-> getToken roundtrip works Sequence< sal_Int8 > rUtf8Name = tokenMap.getUtf8TokenName(nToken); - sal_Int32 ret = tokenMap.getTokenFromUTF8( + sal_Int32 ret = token::TokenMap::getTokenFromUTF8( reinterpret_cast< const char * >(rUtf8Name.getConstArray()), rUtf8Name.getLength() ); CPPUNIT_ASSERT_EQUAL(ret, nToken); |