summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-01-02 08:04:03 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-01-29 08:09:30 +0100
commit750b46025ca276c81ac535ad6741f36bfc88327b (patch)
tree8a196c33bd9b9e0a382d3d711c0c8b8f505a3902 /offapi
parent55656ee2e88b7a79a265f43fc3746a7e2186301e (diff)
give up with the nice solutions and enjoy the ugly hack
I was always hitting a corner case so it seems that this need some drastic measures. Change-Id: I3fdd278b9c3fed178513d653ef24ad8adf20cbd2
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/chart2/XTimeBased.idl4
1 files changed, 3 insertions, 1 deletions
diff --git a/offapi/com/sun/star/chart2/XTimeBased.idl b/offapi/com/sun/star/chart2/XTimeBased.idl
index 328b54c28d6c..487e22ecb698 100644
--- a/offapi/com/sun/star/chart2/XTimeBased.idl
+++ b/offapi/com/sun/star/chart2/XTimeBased.idl
@@ -20,7 +20,7 @@ interface XTimeBased : com::sun::star::uno::XInterface
* @return
* FALSE if the data wrapped around
*/
- boolean switchToNext();
+ boolean switchToNext( [in] boolean wrap);
/**
* point is the zero based index into the time based array
@@ -28,6 +28,8 @@ interface XTimeBased : com::sun::star::uno::XInterface
* @return FALSE if the point is outside of the supported array
*/
boolean setToPointInTime( [in] long point );
+
+ void setRange( [in] long start, [in] long end );
};
}; }; }; };