diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-12 11:47:21 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-12 11:47:21 +0000 |
commit | f40d4e39907f17306a58123c4f27bd6f4081b092 (patch) | |
tree | 1f2b93119dc7c653415711b6b94f08680225c67b /jvmfwk/source/fwkbase.cxx | |
parent | 7aae12836e311fc43b487a0f57bf2f5eb0a50ffa (diff) |
#i10000# make it compile with old gcc
Diffstat (limited to 'jvmfwk/source/fwkbase.cxx')
-rw-r--r-- | jvmfwk/source/fwkbase.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jvmfwk/source/fwkbase.cxx b/jvmfwk/source/fwkbase.cxx index dd190f7457bb..43a7a8b8b860 100644 --- a/jvmfwk/source/fwkbase.cxx +++ b/jvmfwk/source/fwkbase.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fwkbase.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2004-11-09 14:00:36 $ + * last change: $Author: rt $ $Date: 2004-11-12 12:47:21 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -132,7 +132,7 @@ std::vector<PluginLibrary> VendorSettings::getPluginData() OUString sPlugin = BootParams::getPlugin(); if (sPlugin.getLength() > 0) { - PluginLibrary lib(OUString(), sPlugin); + PluginLibrary lib = PluginLibrary(OUString(), sPlugin); vecPlugins.push_back(lib); return vecPlugins; } |