summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-02-23 17:01:23 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-02-23 17:05:10 +0100
commit86ffa606478d18968babe809931be65463399fbb (patch)
treeec4772a2a3df014b39211dc5c2e5ffc7d7d548c2 /svl
parent64de14a0c14d5c0f47692f4a956d71bfe75614aa (diff)
Get rid of CREATEVERSIONRESMGR[_NAME]
Diffstat (limited to 'svl')
-rw-r--r--svl/source/misc/getstringresource.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/misc/getstringresource.cxx b/svl/source/misc/getstringresource.cxx
index aa62fe51b164..b567e8e8fe66 100644
--- a/svl/source/misc/getstringresource.cxx
+++ b/svl/source/misc/getstringresource.cxx
@@ -77,7 +77,7 @@ SimpleResMgr * ResMgrMap::get(css::lang::Locale const & locale) {
Map::iterator i(map_.find(code));
if (i == map_.end()) {
boost::scoped_ptr< SimpleResMgr > mgr(
- new SimpleResMgr(CREATEVERSIONRESMGR_NAME(svl), locale));
+ new SimpleResMgr("svl", locale));
i = map_.insert(Map::value_type(code, mgr.get())).first;
mgr.reset();
}