buildbot failure in ASF Buildbot on openoffice-linux32-nightly

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

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 FAILED: failed

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on aoo-win7

2015-03-24 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/347

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 under cygwin

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

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

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 FAILED: failed configure bootstrap

Sincerely,
 -The Buildbot





svn commit: r1668939 - in /openoffice/trunk/main/svtools: inc/svtools/treelist.hxx source/contnr/svtreebx.cxx

2015-03-24 Thread hanya
Author: hanya
Date: Tue Mar 24 17:05:34 2015
New Revision: 1668939

URL: http://svn.apache.org/r1668939
Log:
#i125147# check the pointer while get accessible state set

Modified:
openoffice/trunk/main/svtools/inc/svtools/treelist.hxx
openoffice/trunk/main/svtools/source/contnr/svtreebx.cxx

Modified: openoffice/trunk/main/svtools/inc/svtools/treelist.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svtools/inc/svtools/treelist.hxx?rev=1668939r1=1668938r2=1668939view=diff
==
--- openoffice/trunk/main/svtools/inc/svtools/treelist.hxx (original)
+++ openoffice/trunk/main/svtools/inc/svtools/treelist.hxx Tue Mar 24 17:05:34 
2015
@@ -411,14 +411,14 @@ inline sal_Bool SvListView::IsSelected(
DBG_ASSERT(pEntry,IsExpanded:No Entry);
SvViewData* pData = (SvViewData*)aDataTable.Get( (sal_uLong)pEntry );
DBG_ASSERT(pData,Entry not in Table);
-   return pData-IsSelected();
+   return pData  pData-IsSelected();
 }
 inline sal_Bool SvListView::HasEntryFocus( SvListEntry* pEntry ) const
 {
DBG_ASSERT(pEntry,IsExpanded:No Entry);
SvViewData* pData = (SvViewData*)aDataTable.Get( (sal_uLong)pEntry );
DBG_ASSERT(pData,Entry not in Table);
-   return pData-HasFocus();
+   return pData  pData-HasFocus();
 }
 inline void SvListView::SetEntryFocus( SvListEntry* pEntry, sal_Bool bFocus ) 
const
 {

Modified: openoffice/trunk/main/svtools/source/contnr/svtreebx.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/svtools/source/contnr/svtreebx.cxx?rev=1668939r1=1668938r2=1668939view=diff
==
--- openoffice/trunk/main/svtools/source/contnr/svtreebx.cxx (original)
+++ openoffice/trunk/main/svtools/source/contnr/svtreebx.cxx Tue Mar 24 
17:05:34 2015
@@ -2757,32 +2757,32 @@ void SvTreeListBox::FillAccessibleEntryS
 {
DBG_ASSERT( pEntry, SvTreeListBox::FillAccessibleEntryStateSet: 
invalid entry );
 
-   if ( pEntry-HasChildsOnDemand() || pEntry-HasChilds() )
-   {
-   rStateSet.AddState( AccessibleStateType::EXPANDABLE );
-   if ( IsExpanded( pEntry ) )
-   rStateSet.AddState( 
(sal_Int16)AccessibleStateType::EXPANDED );
-   }
+if ( pEntry )
+{
+if ( pEntry-HasChildsOnDemand() || pEntry-HasChilds() )
+{
+rStateSet.AddState( AccessibleStateType::EXPANDABLE );
+if ( IsExpanded( pEntry ) )
+rStateSet.AddState( (sal_Int16)AccessibleStateType::EXPANDED );
+}
 
-   if ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED )
-   rStateSet.AddState( AccessibleStateType::CHECKED );
-   if ( IsEntryVisible( pEntry ) )
-   rStateSet.AddState( AccessibleStateType::VISIBLE );
-   if ( IsSelected( pEntry ) )
-   rStateSet.AddState( AccessibleStateType::SELECTED );
-   if ( IsEnabled() )
-   {
-   rStateSet.AddState( AccessibleStateType::ENABLED );
-   rStateSet.AddState( AccessibleStateType::FOCUSABLE );
-   rStateSet.AddState( AccessibleStateType::SELECTABLE );
-   SvViewDataEntry* pViewDataNewCur = 0;
-   if( pEntry )
-   {
-   pViewDataNewCur= GetViewDataEntry(pEntry);
-   if(pViewDataNewCur-HasFocus())
-   rStateSet.AddState( 
AccessibleStateType::FOCUSED );
-   }
-   }
+if ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED )
+rStateSet.AddState( AccessibleStateType::CHECKED );
+if ( IsEntryVisible( pEntry ) )
+rStateSet.AddState( AccessibleStateType::VISIBLE );
+if ( IsSelected( pEntry ) )
+rStateSet.AddState( AccessibleStateType::SELECTED );
+if ( IsEnabled() )
+{
+rStateSet.AddState( AccessibleStateType::ENABLED );
+rStateSet.AddState( AccessibleStateType::FOCUSABLE );
+rStateSet.AddState( AccessibleStateType::SELECTABLE );
+SvViewDataEntry* pViewDataNewCur = 0;
+pViewDataNewCur = GetViewDataEntry(pEntry);
+if( pViewDataNewCur  pViewDataNewCur-HasFocus() )
+rStateSet.AddState( AccessibleStateType::FOCUSED );
+}
+}
 }
 
 Rectangle SvTreeListBox::GetBoundingRect( SvLBoxEntry* pEntry )