From a9467d1caf28feb4905433dc08d6f2a08984ef63 Mon Sep 17 00:00:00 2001 From: Niklas Nebel Date: Fri, 10 Dec 2010 17:22:41 +0100 Subject: dr78: #i57431# correct property descriptions --- offapi/com/sun/star/sheet/DataPilotDescriptor.idl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/offapi/com/sun/star/sheet/DataPilotDescriptor.idl b/offapi/com/sun/star/sheet/DataPilotDescriptor.idl index 992afdef5ed9..6da2733981e6 100644 --- a/offapi/com/sun/star/sheet/DataPilotDescriptor.idl +++ b/offapi/com/sun/star/sheet/DataPilotDescriptor.idl @@ -107,25 +107,26 @@ published service DataPilotDescriptor //------------------------------------------------------------------------- - /** specifies the orientation of the field. + /** specifies if empty rows in the source data are ignored. */ [optional, property] boolean IgnoreEmptyRows; //------------------------------------------------------------------------- - /** specifies the orientation of the field. + /** specifies if empty category cells in the source data should be treated + as repetition of the content from the previous row. */ [optional, property] boolean RepeatIfEmpty; //------------------------------------------------------------------------- - /** specifies the orientation of the field. + /** specifies if columns for grand total results are created. */ [optional, property] boolean ColumnGrand; //------------------------------------------------------------------------- - /** specifies the orientation of the field. + /** specifies if rows for grand total results are created. */ [optional, property] boolean RowGrand; -- cgit v1.2.3 From 7a95aae89febbc37b9f73be444058dfb70240f72 Mon Sep 17 00:00:00 2001 From: Niklas Nebel Date: Fri, 10 Dec 2010 17:59:07 +0100 Subject: dr78: #i116044# correct handling of DataPilot grand total name --- offapi/com/sun/star/sheet/DataPilotDescriptor.idl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/offapi/com/sun/star/sheet/DataPilotDescriptor.idl b/offapi/com/sun/star/sheet/DataPilotDescriptor.idl index 6da2733981e6..89db817d5324 100644 --- a/offapi/com/sun/star/sheet/DataPilotDescriptor.idl +++ b/offapi/com/sun/star/sheet/DataPilotDescriptor.idl @@ -143,6 +143,14 @@ published service DataPilotDescriptor [optional, property] boolean DrillDownOnDoubleClick; //------------------------------------------------------------------------- + + /** specifies a label for grand total results. + + @since OOo 3.4 + */ + [optional, property] string GrandTotalName; + + //------------------------------------------------------------------------- }; //============================================================================= -- cgit v1.2.3 From cbcb63fd212d7044a7b4020e84c0adae258f5399 Mon Sep 17 00:00:00 2001 From: "Daniel Rentz [dr]" Date: Wed, 2 Feb 2011 18:41:04 +0100 Subject: dr78: fix com.sun.star.io.XTextInputStream.readString implementation() when parameter bRemoveDelimiter is set to False --- io/source/TextInputStream/TextInputStream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx index bb91337fc40a..5829fe43cce3 100644 --- a/io/source/TextInputStream/TextInputStream.cxx +++ b/io/source/TextInputStream/TextInputStream.cxx @@ -171,10 +171,10 @@ OUString OTextInputStream::readLine( ) return implReadString( aDummySeq, sal_True, sal_True ); } -OUString OTextInputStream::readString( const Sequence< sal_Unicode >& Delimiters, sal_Bool ) +OUString OTextInputStream::readString( const Sequence< sal_Unicode >& Delimiters, sal_Bool bRemoveDelimiter ) throw(IOException, RuntimeException) { - return implReadString( Delimiters, sal_True, sal_False ); + return implReadString( Delimiters, bRemoveDelimiter, sal_False ); } sal_Bool OTextInputStream::isEOF() -- cgit v1.2.3