Kaydet (Commit) b6212a4a authored tarafından Jan Holesovsky's avatar Jan Holesovsky

Merge remote-tracking branch 'origin/libreoffice-3-4'

Conflicts:
	connectivity/qa/makefile.mk
	sfx2/source/appl/appdata.cxx
	sfx2/source/appl/appinit.cxx
	sfx2/source/inc/appdata.hxx
	sysui/desktop/productversion.mk
	xmloff/source/forms/elementimport.cxx
...@@ -35,9 +35,8 @@ PACKAGE = complex/connectivity ...@@ -35,9 +35,8 @@ PACKAGE = complex/connectivity
#----- compile .java files ----------------------------------------- #----- compile .java files -----------------------------------------
JAVAFILES := $(shell @$(FIND) complex -name "*.java")
JARFILES = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar JARFILES = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar
JAVAFILES := $(shell @$(FIND) complex -name "*.java")
.IF "$(SYSTEM_HSQLDB)" == "YES" .IF "$(SYSTEM_HSQLDB)" == "YES"
EXTRAJARFILES = $(HSQLDB_JAR) EXTRAJARFILES = $(HSQLDB_JAR)
......
...@@ -1431,25 +1431,41 @@ void SvxRTFParser::ReadBorderAttr( int nToken, SfxItemSet& rSet, ...@@ -1431,25 +1431,41 @@ void SvxRTFParser::ReadBorderAttr( int nToken, SfxItemSet& rSet,
case RTF_CLBRDRT: // Cell top border case RTF_CLBRDRT: // Cell top border
{ {
if( bTableDef ) if( bTableDef )
{
if (nBorderTyp != 0)
SetBorderLine( nBorderTyp, aAttr, aBrd );
nBorderTyp = RTF_BRDRT; nBorderTyp = RTF_BRDRT;
}
break; break;
} }
case RTF_CLBRDRB: // Cell bottom border case RTF_CLBRDRB: // Cell bottom border
{ {
if( bTableDef ) if( bTableDef )
{
if (nBorderTyp != 0)
SetBorderLine( nBorderTyp, aAttr, aBrd );
nBorderTyp = RTF_BRDRB; nBorderTyp = RTF_BRDRB;
}
break; break;
} }
case RTF_CLBRDRL: // Cell left border case RTF_CLBRDRL: // Cell left border
{ {
if( bTableDef ) if( bTableDef )
{
if (nBorderTyp != 0)
SetBorderLine( nBorderTyp, aAttr, aBrd );
nBorderTyp = RTF_BRDRL; nBorderTyp = RTF_BRDRL;
}
break; break;
} }
case RTF_CLBRDRR: // Cell right border case RTF_CLBRDRR: // Cell right border
{ {
if( bTableDef ) if( bTableDef )
{
if (nBorderTyp != 0)
SetBorderLine( nBorderTyp, aAttr, aBrd );
nBorderTyp = RTF_BRDRR; nBorderTyp = RTF_BRDRR;
}
break; break;
} }
......
...@@ -69,5 +69,5 @@ PRODUCTNAME.oxygenoffice = OxygenOffice ...@@ -69,5 +69,5 @@ PRODUCTNAME.oxygenoffice = OxygenOffice
PRODUCTVERSION.oxygenoffice = $(PRODUCTVERSION) PRODUCTVERSION.oxygenoffice = $(PRODUCTVERSION)
PRODUCTVERSIONSHORT.oxygenoffice = $(PRODUCTVERSIONSHORT) PRODUCTVERSIONSHORT.oxygenoffice = $(PRODUCTVERSIONSHORT)
PKGVERSION.oxygenoffice = $(PKGVERSION) PKGVERSION.oxygenoffice = $(PKGVERSION)
UNIXFILENAME.oxygenoffice = $(PRODUCTNAME.oxygenoffice:l) UNIXFILENAME.oxygenoffice = $(PRODUCTNAME.oxygenoffice:l)$(PRODUCTVERSION.oxygenoffice)
ICONPREFIX.oxygenoffice = $(UNIXFILENAME.oxygenoffice:s/.//g) ICONPREFIX.oxygenoffice = $(UNIXFILENAME.oxygenoffice:s/.//g)
...@@ -889,7 +889,7 @@ namespace xmloff ...@@ -889,7 +889,7 @@ namespace xmloff
if (!bRetrievedValues) if (!bRetrievedValues)
{ {
getValuePropertyNames(m_eElementType, nClassId, pCurrentValueProperty, pValueProperty); getValuePropertyNames(m_eElementType, nClassId, pCurrentValueProperty, pValueProperty);
ENSURE_OR_BREAK( pValueProperty, "OControlImport::StartElement: illegal value property names!" ); ENSURE_OR_BREAK( pCurrentValueProperty || pValueProperty, "OControlImport::StartElement: illegal value property names!" );
bRetrievedValues = sal_True; bRetrievedValues = sal_True;
} }
ENSURE_OR_BREAK((PROPID_VALUE != aValueProps->Handle) || pValueProperty, ENSURE_OR_BREAK((PROPID_VALUE != aValueProps->Handle) || pValueProperty,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment