Kaydet (Commit) 1ae12fe4 authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

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: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst d425658b
......@@ -63,7 +63,7 @@ End
File gid_File_Lib_Policy_Cli_Oootypes_Config
TXT_FILE_BODY;
Styles = (PACKED, ASSIGNCOMPOMENT);
Styles = (PACKED, ASSIGNCOMPONENT);
Name = "cli_oootypes.config";
Dir = gid_Brand_Dir_Program;
AssignComponent = gid_File_Lib_Policy_Cli_Oootypes_Assembly;
......
......@@ -110,7 +110,7 @@ End
File gid_File_Dl_Policy_Cli_Ure_Config
TXT_FILE_BODY;
Styles = (PACKED, ASSIGNCOMPOMENT);
Styles = (PACKED, ASSIGNCOMPONENT);
Name = "cli_ure.config";
Dir = SCP2_URE_DL_DIR;
AssignComponent = gid_File_Dl_Policy_Cli_Ure_Assembly;
......@@ -144,7 +144,7 @@ End
File gid_File_Dl_Policy_Cli_Basetypes_Config
TXT_FILE_BODY;
Styles = (PACKED, ASSIGNCOMPOMENT);
Styles = (PACKED, ASSIGNCOMPONENT);
Name = "cli_basetypes.config";
Dir = SCP2_URE_DL_DIR;
AssignComponent = gid_File_Dl_Policy_Cli_Basetypes_Assembly;
......@@ -178,7 +178,7 @@ End
File gid_File_Dl_Policy_Cli_Uretypes_Config
TXT_FILE_BODY;
Styles = (PACKED, ASSIGNCOMPOMENT);
Styles = (PACKED, ASSIGNCOMPONENT);
Name = "cli_uretypes.config";
Dir = SCP2_URE_DL_DIR;
AssignComponent = gid_File_Dl_Policy_Cli_Uretypes_Assembly;
......@@ -212,7 +212,7 @@ End
File gid_File_Lib_Policy_Cli_Cppuhelper_Config
TXT_FILE_BODY;
Styles = (PACKED, ASSIGNCOMPOMENT);
Styles = (PACKED, ASSIGNCOMPONENT);
Name = "cli_cppuhelper.config";
Dir = SCP2_URE_DL_DIR;
AssignComponent = gid_File_Lib_Policy_Cli_Cppuhelper_Assembly;
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment