diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-13 14:13:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-13 14:13:20 +0000 |
commit | 2e92ad18466d235864df82dc2a3a729d144736c3 (patch) | |
tree | fb873aaf60e563ae24ef1218d5a7b3229c70791c /svl | |
parent | 2ad3b48ce59723842d77f5eeed4fd4336c9d8362 (diff) |
fix windows build, String::GetTokenCount is gone
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/svdde/ddesvr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx index e4fc303a7d10..916823c269df 100644 --- a/svl/source/svdde/ddesvr.cxx +++ b/svl/source/svdde/ddesvr.cxx @@ -110,7 +110,7 @@ HDDEDATA CALLBACK _export DdeInternal::SvrCallback( } } else - nTopics += sTopics.GetTokenCount( '\t' ); + nTopics += comphelper::string::getTokenCount(sTopics, '\t'); } } } |