diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-24 16:51:59 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-24 16:51:59 +0200 |
commit | 045a7c675d04c258fdf97c6178ca9ad106d47deb (patch) | |
tree | 97fea7fe9eb3d195e37af3f918dbcfd1039c9d98 /solenv | |
parent | b36d311899fde2f80e22bcc034ab8c9bdd795b76 (diff) |
Another typo
Change-Id: I57a9592359a171eb3a6f230f5de2dc44a44b7181
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/windows/msishortcutproperty.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/modules/installer/windows/msishortcutproperty.pm b/solenv/bin/modules/installer/windows/msishortcutproperty.pm index 425ad69197b0..5436f2565cf2 100644 --- a/solenv/bin/modules/installer/windows/msishortcutproperty.pm +++ b/solenv/bin/modules/installer/windows/msishortcutproperty.pm @@ -80,7 +80,7 @@ sub get_msishortcutproperty_propertykey my ($msishortcutproperty) = @_; my $propertykey = ""; - if ( $msishortcutproperty->{'PropertyKey'} ) { $propertykey = $msishortcutproperty->{'PropertyKey'}; } + if ( $msishortcutproperty->{'Key'} ) { $propertykey = $msishortcutproperty->{'Key'}; } return $propertykey; } @@ -94,7 +94,7 @@ sub get_msishortcutproperty_propvariantvalue my ($msishortcutproperty) = @_; my $propvariantvalue = ""; - if ( $msishortcutproperty->{'PropVariantValue'} ) { $propvariantvalue = $msishortcutproperty->{'PropVariantValue'}; } + if ( $msishortcutproperty->{'Value'} ) { $propvariantvalue = $msishortcutproperty->{'Value'}; } return $propvariantvalue; } |