diff options
author | Noel Grandin <noel@peralex.com> | 2013-04-23 08:53:16 +0200 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-04-23 10:28:48 +0000 |
commit | 4f6adb0585037013241bd59e5c869a261c1f20c1 (patch) | |
tree | 1128e7a71ee2f291e665b93b217894983dca8220 /odk/examples/DevelopersGuide | |
parent | 8ed6f1c2bf1f3ffe7da79a5a8765de7b3ec8523f (diff) |
Fix compilation of Spreadsheet odk example
because of change to XDataPilotsResults IDL in
commit ac569ed4cf5064248b9952f182f6572f20dc9bcb
"fdo#60300: Work-in-progress change to rework pivot table core"
Change-Id: I730e15226f4dfe3e6baa5d54e987da1016f6b15b
Reviewed-on: https://gerrit.libreoffice.org/3565
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'odk/examples/DevelopersGuide')
-rw-r--r-- | odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java b/odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java index c94f2056d656..f7220f0f79d5 100644 --- a/odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java +++ b/odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java @@ -1,3 +1,5 @@ +import com.sun.star.sheet.DataPilotFieldFilter; + /************************************************************************* * * The Contents of this file are made available subject to the terms of @@ -864,6 +866,11 @@ public class ExampleDataPilotSource return aResults; } + public double[] getFilteredResults(DataPilotFieldFilter[] aFilters) { + // FIXME + return new double[0]; + } + // XDimensionsSupplier public com.sun.star.container.XNameAccess getDimensions() |