diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2000-10-31 09:13:27 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2000-10-31 09:13:27 +0000 |
commit | df72d16d3ec5af2c2f13d0a9c8e26ae5984d57ed (patch) | |
tree | 19ff632b76da7e287fe6a637db5b257e07fcbe3f /svx/source/dialog/hldocntp.cxx | |
parent | 7438dfe5e8a8705afe0df45a2a847720b0b3d7ce (diff) |
Fixed: Typo in XContentAccess::queryContentIdentifierString() - the
second 'i' was missing ( SUPD>611 ).
Diffstat (limited to 'svx/source/dialog/hldocntp.cxx')
-rw-r--r-- | svx/source/dialog/hldocntp.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/svx/source/dialog/hldocntp.cxx b/svx/source/dialog/hldocntp.cxx index 1bc836a85b7d..25c609f06a5e 100644 --- a/svx/source/dialog/hldocntp.cxx +++ b/svx/source/dialog/hldocntp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: hldocntp.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: pw $ $Date: 2000-10-10 12:33:08 $ + * last change: $Author: kso $ $Date: 2000-10-31 10:10:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -249,7 +249,11 @@ void SvxHyperlinkNewDocTp::FillDocumentList () { while ( xResultSet->next() ) { +#if SUPD>611 + OUString aFileURL = xContentAccess->queryContentIdentifierString(); +#else OUString aFileURL = xContentAccess->queryContentIdentfierString(); +#endif INetURLObject aObj( aFileURL ); String aTitle; |