buildbot failure in ASF Buildbot on aoo-win7

2015-09-29 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-win7/builds/97

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-nightly' triggered this 
build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed svn info build.pl --all

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2015-09-29 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/94

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-fbsd-nightly

2015-09-29 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-fbsd-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/85

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: The Nightly scheduler named 'openoffice-fbsd-nightly' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-09-29 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-rat 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-rat/builds/84

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1705873 - in /openoffice/trunk/main/sccomp/source/solver: solver.cxx solver.hrc solver.hxx solver.src

2015-09-29 Thread pfg
Author: pfg
Date: Tue Sep 29 15:04:00 2015
New Revision: 1705873

URL: http://svn.apache.org/viewvc?rev=1705873=rev
Log:
i124091 - Reinstate the check for nonlinearity but turn it into an option.

We only really support a linear solver at this time so the test for 
non-linearity was actually useful. Make it optional (ON by default)
so that we can now override the check and provide a solution.

Modified:
openoffice/trunk/main/sccomp/source/solver/solver.cxx
openoffice/trunk/main/sccomp/source/solver/solver.hrc
openoffice/trunk/main/sccomp/source/solver/solver.hxx
openoffice/trunk/main/sccomp/source/solver/solver.src

Modified: openoffice/trunk/main/sccomp/source/solver/solver.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sccomp/source/solver/solver.cxx?rev=1705873=1705872=1705873=diff
==
--- openoffice/trunk/main/sccomp/source/solver/solver.cxx (original)
+++ openoffice/trunk/main/sccomp/source/solver/solver.cxx Tue Sep 29 15:04:00 
2015
@@ -58,6 +58,7 @@ using ::rtl::OUString;
 #define STR_TIMEOUT   "Timeout"
 #define STR_EPSILONLEVEL  "EpsilonLevel"
 #define STR_LIMITBBDEPTH  "LimitBBDepth"
+#define STR_NONLINEARTEST "NonLinearTest"
 
 // ---
 //  Resources from tools are used for translated strings
@@ -82,7 +83,8 @@ namespace
 PROP_INTEGER,
 PROP_TIMEOUT,
 PROP_EPSILONLEVEL,
-PROP_LIMITBBDEPTH
+PROP_LIMITBBDEPTH,
+PROP_NONLINEARTEST
 };
 }
 
@@ -146,6 +148,7 @@ SolverComponent::SolverComponent( const
 mnTimeout( 120 ),
 mnEpsilonLevel( 0 ),
 mbLimitBBDepth( sal_True ),
+mbNonLinearTest( sal_True ),
 mbSuccess( sal_False ),
 mfResultValue( 0.0 )
 {
@@ -155,6 +158,7 @@ SolverComponent::SolverComponent( const
 registerProperty( C2U(STR_TIMEOUT),  PROP_TIMEOUT,  0, , 
 getCppuType(  )  );
 registerProperty( C2U(STR_EPSILONLEVEL), PROP_EPSILONLEVEL, 0, 
, getCppuType(  ) );
 registerProperty( C2U(STR_LIMITBBDEPTH), PROP_LIMITBBDEPTH, 0, 
, getCppuType(  ) );
+registerProperty( C2U(STR_NONLINEARTEST), PROP_NONLINEARTEST, 0, 
, getCppuType(  ) );
 }
 
 SolverComponent::~SolverComponent()
@@ -214,6 +218,9 @@ OUString SAL_CALL SolverComponent::getPr
 case PROP_LIMITBBDEPTH:
 nResId = RID_PROPERTY_LIMITBBDEPTH;
 break;
+case PROP_NONLINEARTEST:
+nResId = RID_PROPERTY_NONLINEARTEST;
+break;
 default:
 {
 // unknown - leave empty
@@ -369,6 +376,16 @@ void SAL_CALL SolverComponent::solve() t
 double fInitial = aCellsIter->second.front();
 double fCoeff   = aCellsIter->second.back();   // last 
appended: coefficient for this variable
 double fTwo = lcl_GetValue( mxDoc, aCellsIter->first );
+
+  if ( mbNonLinearTest )
+  {
+  bool bLinear ( sal_True );
+  bLinear = rtl::math::approxEqual( fTwo, fInitial + 2.0 * fCoeff 
) ||
+  rtl::math::approxEqual( fInitial, fTwo - 2.0 * fCoeff );
+// second comparison is needed in case fTwo is zero
+  if ( !bLinear )
+  maStatus = lcl_GetResourceString( RID_ERROR_NONLINEAR );
+   }
 }
 
 lcl_SetValue( mxDoc, *aVarIter, 0.0 );  // set back to zero for 
examining next variable

Modified: openoffice/trunk/main/sccomp/source/solver/solver.hrc
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sccomp/source/solver/solver.hrc?rev=1705873=1705872=1705873=diff
==
--- openoffice/trunk/main/sccomp/source/solver/solver.hrc (original)
+++ openoffice/trunk/main/sccomp/source/solver/solver.hrc Tue Sep 29 15:04:00 
2015
@@ -31,11 +31,12 @@
 #define RID_PROPERTY_TIMEOUT(SOLVER_RESOURCE_START + 3)
 #define RID_PROPERTY_EPSILONLEVEL   (SOLVER_RESOURCE_START + 4)
 #define RID_PROPERTY_LIMITBBDEPTH   (SOLVER_RESOURCE_START + 5)
-#define RID_ERROR_NONLINEAR (SOLVER_RESOURCE_START + 6)
-#define RID_ERROR_EPSILONLEVEL  (SOLVER_RESOURCE_START + 7)
-#define RID_ERROR_INFEASIBLE(SOLVER_RESOURCE_START + 8)
-#define RID_ERROR_UNBOUNDED (SOLVER_RESOURCE_START + 9)
-#define RID_ERROR_TIMEOUT   (SOLVER_RESOURCE_START + 10)
+#define RID_PROPERTY_NONLINEARTEST  (SOLVER_RESOURCE_START + 6)
+#define RID_ERROR_NONLINEAR (SOLVER_RESOURCE_START + 7)
+#define RID_ERROR_EPSILONLEVEL  (SOLVER_RESOURCE_START + 8)
+#define RID_ERROR_INFEASIBLE(SOLVER_RESOURCE_START + 9)
+#define RID_ERROR_UNBOUNDED (SOLVER_RESOURCE_START + 10)
+#define RID_ERROR_TIMEOUT   (SOLVER_RESOURCE_START + 11)
 
 #endif
 

Modified: openoffice/trunk/main/sccomp/source/solver/solver.hxx
URL: 

svn commit: r1705881 - /openoffice/trunk/main/sccomp/source/solver/solver.hxx

2015-09-29 Thread pfg
Author: pfg
Date: Tue Sep 29 15:45:47 2015
New Revision: 1705881

URL: http://svn.apache.org/viewvc?rev=1705881=rev
Log:
Minor formatting fix

Modified:
openoffice/trunk/main/sccomp/source/solver/solver.hxx

Modified: openoffice/trunk/main/sccomp/source/solver/solver.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sccomp/source/solver/solver.hxx?rev=1705881=1705880=1705881=diff
==
--- openoffice/trunk/main/sccomp/source/solver/solver.hxx (original)
+++ openoffice/trunk/main/sccomp/source/solver/solver.hxx Tue Sep 29 15:45:47 
2015
@@ -56,8 +56,7 @@ class SolverComponent : public comphelpe
 sal_Int32  
   mnTimeout;
 sal_Int32  
   mnEpsilonLevel;
 sal_Bool   
   mbLimitBBDepth;
-sal_Bool
- mbNonLinearTest;
+sal_Bool   
   mbNonLinearTest;
 // results
 sal_Bool   
   mbSuccess;
 double 
   mfResultValue;




buildbot success in ASF Buildbot on openoffice-linux64-rat-aoo410

2015-09-29 Thread buildbot
The Buildbot has detected a passing build on builder 
openoffice-linux64-rat-aoo410 while building ASF Buildbot. Full details are 
available at:
http://ci.apache.org/builders/openoffice-linux64-rat-aoo410/builds/80

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat-aoo410' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux32-nightly

2015-09-29 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux32-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux32-nightly/builds/100

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm2_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot exception in ASF Buildbot on aoo-win7

2015-09-29 Thread buildbot
The Buildbot has detected a build exception on builder aoo-win7 while building 
ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-win7/builds/98

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-nightly' triggered this 
build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: exception svn info autoconf configure bootstrap build.pl --all 
copy log index upload logs

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-linux64-nightly

2015-09-29 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/95

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed

Sincerely,
 -The Buildbot





svn commit: r1705924 - in /openoffice/branches/AOO410/main/vcl/unx/gtk/window: ./ gtkframe.cxx

2015-09-29 Thread kschenk
Author: kschenk
Date: Tue Sep 29 20:31:48 2015
New Revision: 1705924

URL: http://svn.apache.org/viewvc?rev=1705924=rev
Log:
#i125991# merged to AOO410


Modified:
openoffice/branches/AOO410/main/vcl/unx/gtk/window/   (props changed)
openoffice/branches/AOO410/main/vcl/unx/gtk/window/gtkframe.cxx

Propchange: openoffice/branches/AOO410/main/vcl/unx/gtk/window/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Sep 29 20:31:48 2015
@@ -0,0 +1,5 @@
+/openoffice/branches/AOO400/main/vcl/unx/gtk/window:1503684
+/openoffice/branches/ia2/main/vcl/unx/gtk/window:1417739-1541842
+/openoffice/branches/ooxml-osba/main/vcl/unx/gtk/window:1546391,1546395,1546574,1546934,1547030,1547392,1551920,1551954,1551958,1552283
+/openoffice/branches/rejuvenate01/main/vcl/unx/gtk/window:1480411,1534063,1534098,1536312,1549902,1560617
+/openoffice/trunk/main/vcl/unx/gtk/window:1571617,1571677,1572569,1572577,1573547,1574058,1574101,1575922,1576216,1576748,1578786,1579934,1580657,1580779,1581746,1581840,1582359,1582365,1582709,1583336,1583418,1583589,1583988,1585171,1585261,1586242,1586249,1586583,1587468,1589050,1591501,1592692,1592716,1594206,1595847,1595851,1595858,1596218,1596491,1596494,1597076,1597102,1597109,1599169,1599173-1599174,1600581,1600587,1600590,1600630,1600861,1600863,1600883,1602434,1602791,1602823,1602850,1603416,1603897,1603941,1604028,1604709,1604786,1605044,1605355,1605689,1606055,1606061,1606706,1607111,1607793,1607836,1608348,1608376,1608730,1608733,1609204,1609208,1609302,1609426,1610347,1610411,1610422,1610671,1611470,1611549,1612070-1612071,1612539,1612801,1616457,1616944,1621121,1623847,1623849-1623850,1630814,1633294,1633297,1635806,1642300-1642302,1650314,1651591,1654282,1669457,1669459,1669462-1669463,1669465,1677190,1687177,1689883,1689959,1692551,1694132,1694701,1695962,1697807,170
 
0078,1700135,1702894,1702898,1702986,1702988,1705193,1705196,1705199,1705276,1705364,1705368-1705369,1705542

Modified: openoffice/branches/AOO410/main/vcl/unx/gtk/window/gtkframe.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO410/main/vcl/unx/gtk/window/gtkframe.cxx?rev=1705924=1705923=1705924=diff
==
--- openoffice/branches/AOO410/main/vcl/unx/gtk/window/gtkframe.cxx (original)
+++ openoffice/branches/AOO410/main/vcl/unx/gtk/window/gtkframe.cxx Tue Sep 29 
20:31:48 2015
@@ -3749,18 +3749,26 @@ uno::Reference(xContext, 
uno::UNO_QUERY);
}
 
-   for (sal_Int32 i = 0; i < xContext->getAccessibleChildCount(); ++i)
-   {
-   uno::Reference< accessibility::XAccessible > xChild = 
xContext->getAccessibleChild(i);
-   if (!xChild.is())
-   continue;
-   uno::Reference< accessibility::XAccessibleContext > 
xChildContext = xChild->getAccessibleContext();
-   if (!xChildContext.is())
-   continue;
-   uno::Reference< accessibility::XAccessibleEditableText > xText 
= FindFocus(xChildContext);
-   if (xText.is())
-   return xText;
-   }
+try
+{
+for (sal_Int32 i = 0, n = xContext->getAccessibleChildCount(); i < n; 
++i)
+{
+uno::Reference< accessibility::XAccessible > xChild = 
xContext->getAccessibleChild(i);
+if (!xChild.is())
+continue;
+uno::Reference< accessibility::XAccessibleContext > 
xChildContext = xChild->getAccessibleContext();
+if (!xChildContext.is())
+continue;
+uno::Reference< accessibility::XAccessibleEditableText > xText = 
FindFocus(xChildContext);
+if (xText.is())
+return xText;
+}
+}
+catch( lang::IndexOutOfBoundsException & e )
+{
+OSL_TRACE( "GtkFrame FindFocus, %s", ::rtl::OUStringToOString(
+e.Message, RTL_TEXTENCODING_UTF8 ).pData->buffer );
+}
return uno::Reference< accessibility::XAccessibleEditableText >();
 }