summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/funcuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/unoobj/funcuno.cxx')
-rw-r--r--sc/source/ui/unoobj/funcuno.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sc/source/ui/unoobj/funcuno.cxx b/sc/source/ui/unoobj/funcuno.cxx
index c2ac19067b0d..45e15db08e7c 100644
--- a/sc/source/ui/unoobj/funcuno.cxx
+++ b/sc/source/ui/unoobj/funcuno.cxx
@@ -48,16 +48,12 @@
using namespace com::sun::star;
-
-
// registered as implementation for service FunctionAccess,
// also supports service SpreadsheetDocumentSettings (to set null date etc.)
#define SCFUNCTIONACCESS_SERVICE "com.sun.star.sheet.FunctionAccess"
#define SCDOCSETTINGS_SERVICE "com.sun.star.sheet.SpreadsheetDocumentSettings"
-
-
// helper to use cached document if not in use, temporary document otherwise
class ScTempDocSource
@@ -75,8 +71,6 @@ public:
ScDocument* GetDocument();
};
-
-
ScDocument* ScTempDocSource::CreateDocument()
{
ScDocument* pDoc = new ScDocument; // SCDOCMODE_DOCUMENT
@@ -114,8 +108,6 @@ ScDocument* ScTempDocSource::GetDocument()
return rCache.GetDocument();
}
-
-
ScTempDocCache::ScTempDocCache() :
pDoc( NULL ),
bInUse( false )
@@ -141,8 +133,6 @@ void ScTempDocCache::Clear()
pDoc = NULL;
}
-
-
// copy results from one document into another
//! merge this with ScAreaLink::Refresh
//! copy directly without a clipboard document?
@@ -183,8 +173,6 @@ static sal_Bool lcl_CopyData( ScDocument* pSrcDoc, const ScRange& rSrcRange,
return sal_True;
}
-
-
ScFunctionAccess::ScFunctionAccess() :
pOptions( NULL ),
aPropertyMap( ScDocOptionsHelper::GetPropertyMap() ),