[Libreoffice-commits] .: sc/source

Michael Meeks michael at kemper.freedesktop.org
Mon Oct 3 01:28:16 PDT 2011


 sc/source/ui/miscdlgs/protectiondlg.src |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 737ab5165ce9e8eaff4324df290a38924cbbeace
Author: Olivier Hallot <olivier.hallot at alta.org.br>
Date:   Thu Sep 29 21:13:11 2011 -0300

    Fix for bug fdo#41310 - Need more room for localized string
    
    The following patch resizes the sheet protection dialog to
    display localized strings without truncation
    
    Sizes adjusted for fontsize = 10

diff --git a/sc/source/ui/miscdlgs/protectiondlg.src b/sc/source/ui/miscdlgs/protectiondlg.src
index aca43c6..ca4e9be 100644
--- a/sc/source/ui/miscdlgs/protectiondlg.src
+++ b/sc/source/ui/miscdlgs/protectiondlg.src
@@ -31,24 +31,24 @@ ModalDialog RID_SCDLG_TABPROTECTION
 {
     HelpID = "sc:ModalDialog:RID_SCDLG_TABPROTECTION";
     Text [ en-US ] = "Protect Sheet" ;
-    Size = MAP_APPFONT ( 220 , 135 ) ;
+    Size = MAP_APPFONT ( 250 , 135 ) ;
     Moveable = TRUE ;
     Closeable = TRUE ;
 
     OKButton BTN_OK
     {
-        Pos = MAP_APPFONT ( 164 , 6 ) ;
+        Pos = MAP_APPFONT ( 194 , 6 ) ;
         Size = MAP_APPFONT ( 50 , 14 ) ;
         DefButton = TRUE ;
     };
     CancelButton BTN_CANCEL
     {
-        Pos = MAP_APPFONT ( 164 , 23 ) ;
+        Pos = MAP_APPFONT ( 194 , 23 ) ;
         Size = MAP_APPFONT ( 50 , 14 ) ;
     };
     HelpButton BTN_HELP
     {
-        Pos = MAP_APPFONT ( 164 , 43 ) ;
+        Pos = MAP_APPFONT ( 194 , 43 ) ;
         Size = MAP_APPFONT ( 50 , 14 ) ;
     };
 
@@ -56,7 +56,7 @@ ModalDialog RID_SCDLG_TABPROTECTION
     {
         HelpID = "sc:CheckBox:RID_SCDLG_TABPROTECTION:BTN_PROTECT";
         Pos = MAP_APPFONT ( 6 , 6 ) ;
-        Size = MAP_APPFONT ( 150 , 10 );
+        Size = MAP_APPFONT ( 180 , 10 );
 
         Text [ en-US ] = "P~rotect this sheet and the contents of protected cells" ;
     };
@@ -98,7 +98,7 @@ ModalDialog RID_SCDLG_TABPROTECTION
     FixedLine FL_OPTIONS
     {
         Pos = MAP_APPFONT ( 6, 60 );
-        Size = MAP_APPFONT ( 150, 8 );
+        Size = MAP_APPFONT ( 180, 8 );
 
         Text [ en-US ] = "Options";
     };


More information about the Libreoffice-commits mailing list