diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-04-11 06:38:09 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-04-11 06:38:09 +0000 |
commit | 17a2eb457dd23cdabd499613d1a59cdeb94795d1 (patch) | |
tree | e2ef940e6fac27b6cfc109ecea88ce1204befc2e /dbaccess/source | |
parent | 5dce67f4e3a6d400543c262187889a2db9399fae (diff) |
OUString ctor
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/browser/dbexchange.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/browser/dbexchange.cxx b/dbaccess/source/ui/browser/dbexchange.cxx index cf83be6d019c..bac9d42d070f 100644 --- a/dbaccess/source/ui/browser/dbexchange.cxx +++ b/dbaccess/source/ui/browser/dbexchange.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dbexchange.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: fs $ $Date: 2001-03-30 12:05:37 $ + * last change: $Author: hjs $ $Date: 2001-04-11 07:38:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -242,7 +242,7 @@ namespace dbaui m_sCompatibleObjectDescription = sDatasourceName; m_sCompatibleObjectDescription += sSeparator; - m_sCompatibleObjectDescription += bIsStatement ? String() : sDatasourceName; + m_sCompatibleObjectDescription += bIsStatement ? ::rtl::OUString() : sDatasourceName; m_sCompatibleObjectDescription += sSeparator; m_sCompatibleObjectDescription += sObjectKind; m_sCompatibleObjectDescription += sSeparator; |