diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-10-04 15:23:17 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-10-04 15:23:17 +0000 |
commit | 207f007a0e866f936b3d1afef42d75117f17fc7a (patch) | |
tree | 6eb557c7dd31a77640044340e89f6fad560fa95e /basctl | |
parent | 5002be28a9318ffaa158adf9390fd2761332c97e (diff) |
INTEGRATION: CWS jl44 (1.56.10); FILE MERGED
2006/09/28 10:41:14 ab 1.56.10.1: #i69916# Extension export with .oxt
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/moduldl2.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index 988a5a3ec5b3..03c769375965 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -4,9 +4,9 @@ * * $RCSfile: moduldl2.cxx,v $ * - * $Revision: 1.56 $ + * $Revision: 1.57 $ * - * last change: $Author: obo $ $Date: 2006-09-17 00:28:55 $ + * last change: $Author: kz $ $Date: 2006-10-04 16:23:17 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1343,7 +1343,7 @@ void LibPage::ExportAsPackage( const String& aLibName ) // filter ::rtl::OUString aTitle = String( IDEResId( RID_STR_PACKAGE_BUNDLE ) ); ::rtl::OUString aFilter; - aFilter = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "*.uno.pkg" ) ); // library files + aFilter = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "*.oxt" ) ); // library files Reference< XFilterManager > xFltMgr(xFP, UNO_QUERY); xFltMgr->appendFilter( aTitle, aFilter ); @@ -1367,7 +1367,7 @@ void LibPage::ExportAsPackage( const String& aLibName ) Sequence< ::rtl::OUString > aFiles = xFP->getFiles(); INetURLObject aURL( aFiles[0] ); if( !aURL.getExtension().getLength() ) - aURL.setExtension( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "uno.pkg" ) ) ); + aURL.setExtension( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "oxt" ) ) ); ::rtl::OUString aPackageURL( aURL.GetMainURL( INetURLObject::NO_DECODE ) ); |