[Libreoffice-commits] core.git: scp2/source solenv/bin

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Dec 21 07:48:34 UTC 2018


 scp2/source/ooo/file_library_ooo.scp         |    2 +-
 scp2/source/ooo/ure.scp                      |    8 ++++----
 solenv/bin/modules/installer/windows/file.pm |    6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit 1ae12fe4b0c610f205b9e39d74276c55a03c4fca
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed Dec 19 22:29:46 2018 +0100
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri Dec 21 08:48:10 2018 +0100

    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 at yahoo.fr>

diff --git a/scp2/source/ooo/file_library_ooo.scp b/scp2/source/ooo/file_library_ooo.scp
index d014bf55c1a2..350b0363a763 100644
--- a/scp2/source/ooo/file_library_ooo.scp
+++ b/scp2/source/ooo/file_library_ooo.scp
@@ -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;
diff --git a/scp2/source/ooo/ure.scp b/scp2/source/ooo/ure.scp
index a75aeb4dbb8f..09109ebc41e6 100644
--- a/scp2/source/ooo/ure.scp
+++ b/scp2/source/ooo/ure.scp
@@ -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;
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


More information about the Libreoffice-commits mailing list