diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-05 16:26:17 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-05 16:26:17 +0000 |
commit | a36b9c1039301f1f7119a29e43dc88052f1997e2 (patch) | |
tree | 1388a52606ea2ab72f0744ee1ec848ee31b95d64 /solenv/bin/modules | |
parent | e24bd2b9974cf72edbb91e8e0212bfbf7117d5b2 (diff) |
INTEGRATION: CWS aquavcl05_DEV300 (1.12.154); FILE MERGED
2008/03/03 17:35:44 is 1.12.154.1: #i86640# desktop link and startmenu link
Diffstat (limited to 'solenv/bin/modules')
-rw-r--r-- | solenv/bin/modules/installer/windows/shortcut.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/solenv/bin/modules/installer/windows/shortcut.pm b/solenv/bin/modules/installer/windows/shortcut.pm index 9e3fb85f63ce..1aeae2ffedd3 100644 --- a/solenv/bin/modules/installer/windows/shortcut.pm +++ b/solenv/bin/modules/installer/windows/shortcut.pm @@ -4,9 +4,9 @@ # # $RCSfile: shortcut.pm,v $ # -# $Revision: 1.12 $ +# $Revision: 1.13 $ # -# last change: $Author: ihi $ $Date: 2007-11-26 16:20:21 $ +# last change: $Author: kz $ $Date: 2008-03-05 17:26:17 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -161,6 +161,7 @@ sub get_shortcut_component my $absolute_filename = 0; if ( $shortcut->{'Styles'} ) { $styles = $shortcut->{'Styles'}; } if ( $styles =~ /\bABSOLUTE_FILENAME\b/ ) { $absolute_filename = 1; } # FileID contains an absolute filename + if ( $styles =~ /\bUSE_HELPER_FILENAME\b/ ) { $absolute_filename = 1; } # ComponentIDFile contains id of a helper file # if the FileID contains an absolute filename, therefore the entry for "ComponentIDFile" has to be used. if ( $absolute_filename ) { $shortcut_fileid = $shortcut->{'ComponentIDFile'}; } @@ -378,6 +379,7 @@ sub get_folderitem_directory if ( $shortcut->{'FolderID'} eq "PREDEFINED_DESKTOP" ) { $directory = $installer::globals::desktopfolder; + $installer::globals::desktoplinkexists = 1; } if ( $shortcut->{'FolderID'} eq "PREDEFINED_STARTMENU" ) |