[Libreoffice-commits] core.git: sc/source

Markus Mohrhard markus.mohrhard at googlemail.com
Tue Feb 3 03:44:41 PST 2015


 sc/source/ui/docshell/impex.cxx |    7 +++++++
 sc/source/ui/inc/impex.hxx      |    2 ++
 2 files changed, 9 insertions(+)

New commits:
commit 4daafaf5ac501e1a9f040fbc0c428763b3614d95
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Tue Feb 3 12:44:03 2015 +0100

    more build fixing

diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx
index 2df60d6..8ca7598 100644
--- a/sc/source/ui/docshell/impex.cxx
+++ b/sc/source/ui/docshell/impex.cxx
@@ -254,6 +254,13 @@ void ScImportExport::EndPaste(bool bAutoRowHeight)
 
 }
 
+bool ScImportExport::ImportData( const OUString& /* rMimeType */,
+                     const ::com::sun::star::uno::Any & /* rValue */ )
+{
+    OSL_ENSURE( false, "Implementation is missing" );
+    return false;
+}
+
 bool ScImportExport::ExportData( const OUString& rMimeType,
                                  ::com::sun::star::uno::Any & rValue )
 {
diff --git a/sc/source/ui/inc/impex.hxx b/sc/source/ui/inc/impex.hxx
index 8be2cbc1..f5b7b8c 100644
--- a/sc/source/ui/inc/impex.hxx
+++ b/sc/source/ui/inc/impex.hxx
@@ -142,6 +142,8 @@ public:
     bool ImportStream( SvStream&, const OUString& rBaseURL, sal_uLong=FORMAT_STRING );
     bool ExportStream( SvStream&, const OUString& rBaseURL, sal_uLong=FORMAT_STRING );
 
+    bool ImportData( const OUString& rMimeType,
+                     const ::com::sun::star::uno::Any & rValue );
     bool ExportData( const OUString& rMimeType,
                      ::com::sun::star::uno::Any & rValue  );
 


More information about the Libreoffice-commits mailing list