summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/installer/windows
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-12-19 22:29:46 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-12-21 08:48:10 +0100
commit1ae12fe4b0c610f205b9e39d74276c55a03c4fca (patch)
tree0f2977c205fad745fc10ca21e7879533ff92f1b6 /solenv/bin/modules/installer/windows
parentd425658bd9fd8e315e4931afb544bc845da0360e (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: Ic8b2adeb949bfc72830667b6928147ebd053d2f0 Reviewed-on: https://gerrit.libreoffice.org/65517 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'solenv/bin/modules/installer/windows')
-rw-r--r--solenv/bin/modules/installer/windows/file.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/bin/modules/installer/windows/file.pm b/solenv/bin/modules/installer/windows/file.pm
index 081edde6db99..d3771fae0b94 100644
--- a/solenv/bin/modules/installer/windows/file.pm
+++ b/solenv/bin/modules/installer/windows/file.pm
@@ -199,11 +199,11 @@ sub get_file_component_name
my $componentname = "";
- # Special handling for files with ASSIGNCOMPOMENT
+ # Special handling for files with ASSIGNCOMPONENT
my $styles = "";
if ( $fileref->{'Styles'} ) { $styles = $fileref->{'Styles'}; }
- if ( $styles =~ /\bASSIGNCOMPOMENT\b/ )
+ if ( $styles =~ /\bASSIGNCOMPONENT\b/ )
{
$componentname = get_component_from_assigned_file($fileref->{'AssignComponent'}, $filesref);
}
@@ -333,7 +333,7 @@ sub get_file_component_name
####################################################################
# Returning the component name for a defined file gid.
-# This is necessary for files with flag ASSIGNCOMPOMENT
+# This is necessary for files with flag ASSIGNCOMPONENT
####################################################################
sub get_component_from_assigned_file