User: timar   
Date: 05/12/08 08:08:13

Added:
 /hu/src/2.0.1/Patches/
  default-graphics-cache.diff, default-impress-ruler.diff,
  sc-autofilter-empty-nonempty.diff

Log:
 preferential changes (Ximian)

File Changes:

Directory: /hu/src/2.0.1/Patches/
=================================

File [added]: default-graphics-cache.diff
Url: 
http://hu.openoffice.org/source/browse/hu/src/2.0.1/Patches/default-graphics-cache.diff?rev=1.1&content-type=text/vnd.viewcvs-markup
Added lines: 20
---------------
--- officecfg/registry/schema/org/openoffice/Office/Common.xcs.old      
2005-02-28 20:41:30.000000000 +0100
+++ officecfg/registry/schema/org/openoffice/Office/Common.xcs  2005-03-03 
21:36:44.000000000 +0100
@@ -1216,7 +1216,7 @@
                                                <desc>Specifies the maximum 
cache size for all graphical display objects.</desc>
                                                <label>Total Graphic Cache 
Size</label>
                                        </info>
-                                       <value>10240000</value>
+                                       <value>20480000</value>
                                </prop>
                                <prop oor:name="ObjectCacheSize" 
oor:type="xs:int">
                                        <info>
@@ -1224,7 +1224,7 @@
                                                <desc>Specifies the maximum 
cache size for a single graphic display object.</desc>
                                                <label>Graphic Object Cache 
Size</label>
                                        </info>
-                                       <value>2560000</value>
+                                       <value>5120000</value>
                                </prop>
                                <prop oor:name="ObjectReleaseTime" 
oor:type="xs:int">
                                        <info>

File [added]: default-impress-ruler.diff
Url: 
http://hu.openoffice.org/source/browse/hu/src/2.0.1/Patches/default-impress-ruler.diff?rev=1.1&content-type=text/vnd.viewcvs-markup
Added lines: 16
---------------
Index: officecfg/registry/schema/org/openoffice/Office/Impress.xcs
===================================================================
RCS file: 
/cvs/util/officecfg/registry/schema/org/openoffice/Office/Impress.xcs,v
retrieving revision 1.24
diff -u -p -u -r1.24 Impress.xcs
--- officecfg/registry/schema/org/openoffice/Office/Impress.xcs 21 Jan 2005 
18:15:46 -0000      1.24
+++ officecfg/registry/schema/org/openoffice/Office/Impress.xcs 19 Sep 2005 
10:14:48 -0000
@@ -99,7 +99,7 @@
                                                <desc>Indicates whether to show 
the rulers at the left and at the top of the working area.</desc>
                                                <label>Rulers visible</label>
                                        </info>
-                                       <value>false</value>
+                                       <value>true</value>
                                </prop>
                                <prop oor:name="Helpline" oor:type="xs:boolean">
                                        <!-- OldPath: Impress/Layout/Display -->

File [added]: sc-autofilter-empty-nonempty.diff
Url: 
http://hu.openoffice.org/source/browse/hu/src/2.0.1/Patches/sc-autofilter-empty-nonempty.diff?rev=1.1&content-type=text/vnd.viewcvs-markup
Added lines: 42
---------------
--- 
/home/sragavan/cvs/bk/ooo-build/build/OOO_1_1_2/sc/source/ui/view/gridwin.cxx   
    2003-06-02 12:58:42.000000000 +0530
+++ sc/source/ui/view/gridwin.cxx       2004-10-11 11:22:24.000000000 +0530
@@ -159,6 +159,8 @@
 #define SC_AUTOFILTER_ALL              0
 #define        SC_AUTOFILTER_CUSTOM    1
 #define        SC_AUTOFILTER_TOP10             2
+#define        SC_AUTOFILTER_EMPTY             3
+#define        SC_AUTOFILTER_NOTEMPTY          4
 
 //     Modi fuer die FilterListBox
 enum ScFilterBoxMode
@@ -711,7 +713,7 @@
                long nMaxText = 0;
 
                //      default entries
-               static const USHORT nDefIDs[] = { SCSTR_ALL, SCSTR_STDFILTER, 
SCSTR_TOP10FILTER };
+               static const USHORT nDefIDs[] = { SCSTR_ALL, SCSTR_STDFILTER, 
SCSTR_TOP10FILTER, SCSTR_EMPTY, SCSTR_NOTEMPTY };
                const USHORT nDefCount = sizeof(nDefIDs) / sizeof(USHORT);
                for (i=0; i<nDefCount; i++)
                {
@@ -1087,6 +1089,21 @@
                                                rNewEntry.eOp   = SC_TOPVAL;
                                                *rNewEntry.pStr = 
String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM("10"));
                                        }
+                                       else if (nSel == SC_AUTOFILTER_EMPTY)
+                                       {
+                                               rNewEntry.pStr->Erase();
+                                               rNewEntry.bQueryByString = 
FALSE;
+                                               rNewEntry.eOp   = SC_EQUAL;
+                                               rNewEntry.nVal  = 
SC_EMPTYFIELDS;
+                                                                       
+                                       }
+                                       else if (nSel == SC_AUTOFILTER_NOTEMPTY)
+                                       {
+                                               rNewEntry.pStr->Erase();
+                                               rNewEntry.bQueryByString = 
FALSE;                               
+                                               rNewEntry.eOp   = SC_EQUAL;
+                                               rNewEntry.nVal  = 
SC_NONEMPTYFIELDS;                            
+                                       }                               
                                        else
                                        {
                                                rNewEntry.eOp   = SC_EQUAL;




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to