diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-24 16:43:11 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-24 16:43:11 +0200 |
commit | b36d311899fde2f80e22bcc034ab8c9bdd795b76 (patch) | |
tree | baef3b2d4ea479aa35fcbc9435f35ced679e048e /solenv | |
parent | 748be656846d5d698a47f63735f2ef58763a1ef6 (diff) |
And a bit more of fixes
Change-Id: Ib247391d83773cddc18e37d5e979552a13dd19eb
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 019adbd28253..425ad69197b0 100644 --- a/solenv/bin/modules/installer/windows/msishortcutproperty.pm +++ b/solenv/bin/modules/installer/windows/msishortcutproperty.pm @@ -77,7 +77,7 @@ sub get_msishorcutproperty_shortcut sub get_msishortcutproperty_propertykey { - my ($msishortcutproperty, $onelanguage) = @_; + my ($msishortcutproperty) = @_; my $propertykey = ""; if ( $msishortcutproperty->{'PropertyKey'} ) { $propertykey = $msishortcutproperty->{'PropertyKey'}; } @@ -91,7 +91,7 @@ sub get_msishortcutproperty_propertykey sub get_msishortcutproperty_propvariantvalue { - my ($msishortcutproperty, $onelanguage) = @_; + my ($msishortcutproperty) = @_; my $propvariantvalue = ""; if ( $msishortcutproperty->{'PropVariantValue'} ) { $propvariantvalue = $msishortcutproperty->{'PropVariantValue'}; } |