diff options
Diffstat (limited to 'sc/source/ui/dataprovider/dataprovider.cxx')
-rw-r--r-- | sc/source/ui/dataprovider/dataprovider.cxx | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sc/source/ui/dataprovider/dataprovider.cxx b/sc/source/ui/dataprovider/dataprovider.cxx index 119dbdd18e9b..79b936f5d704 100644 --- a/sc/source/ui/dataprovider/dataprovider.cxx +++ b/sc/source/ui/dataprovider/dataprovider.cxx @@ -107,7 +107,7 @@ double ExternalDataSource::getUpdateFrequency() const return mnUpdateFrequency; } -void ExternalDataSource::refresh(ScDocument* pDoc) +void ExternalDataSource::refresh(ScDocument* pDoc, bool bDeterministic) { // no DB data available if (!mpDBDataManager) @@ -121,6 +121,9 @@ void ExternalDataSource::refresh(ScDocument* pDoc) if (!mpDataProvider) return; + if (bDeterministic) + mpDataProvider->setDeterministic(); + mpDataProvider->Import(); } @@ -148,6 +151,16 @@ std::vector<sc::ExternalDataSource>& ExternalDataMapper::getDataSources() return maDataSources; } +DataProvider::DataProvider(): + mbDeterministic(false) +{ +} + +void DataProvider::setDeterministic() +{ + mbDeterministic = true; +} + DataProvider::~DataProvider() { } |