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

David Tardon dtardon at redhat.com
Mon Jun 13 06:38:39 UTC 2016


 sc/source/ui/collab/sendfunc.cxx |    8 ++++----
 sc/source/ui/collab/sendfunc.hxx |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit e19759c9ad5e98f158009686ea3c695456265e91
Author: David Tardon <dtardon at redhat.com>
Date:   Mon Jun 13 08:34:32 2016 +0200

    fix build
    
    Change-Id: I01a111160d43e2f398ff4c560810b737b62b6ba3

diff --git a/sc/source/ui/collab/sendfunc.cxx b/sc/source/ui/collab/sendfunc.cxx
index fca719e..ddcd9ef 100644
--- a/sc/source/ui/collab/sendfunc.cxx
+++ b/sc/source/ui/collab/sendfunc.cxx
@@ -433,17 +433,17 @@ sal_Bool ScDocFuncSend::RenameTable( SCTAB nTab, const OUString& rName,
 }
 
 sal_Bool ScDocFuncSend::ApplyAttributes( const ScMarkData& rMark, const ScPatternAttr& rPattern,
-                                         sal_Bool bRecord, sal_Bool bApi )
+                                         sal_Bool bApi )
 {
     SAL_INFO( "sc.tubes", "ApplyAttributes not implemented!" );
-    return ScDocFunc::ApplyAttributes( rMark, rPattern, bRecord, bApi );
+    return ScDocFunc::ApplyAttributes( rMark, rPattern, bApi );
 }
 
 sal_Bool ScDocFuncSend::ApplyStyle( const ScMarkData& rMark, const OUString& rStyleName,
-                                    sal_Bool bRecord, sal_Bool bApi )
+                                    sal_Bool bApi )
 {
     SAL_INFO( "sc.tubes", "ApplyStyle not implemented!" );
-    return ScDocFunc::ApplyStyle( rMark, rStyleName, bRecord, bApi );
+    return ScDocFunc::ApplyStyle( rMark, rStyleName, bApi );
 }
 
 sal_Bool ScDocFuncSend::MergeCells( const ScCellMergeOption& rOption, sal_Bool bContents,
diff --git a/sc/source/ui/collab/sendfunc.hxx b/sc/source/ui/collab/sendfunc.hxx
index 3601e68..1baacd5 100644
--- a/sc/source/ui/collab/sendfunc.hxx
+++ b/sc/source/ui/collab/sendfunc.hxx
@@ -47,9 +47,9 @@ public:
     virtual bool        SetNoteText( const ScAddress& rPos, const OUString& rNoteText, sal_Bool bApi );
     virtual sal_Bool    RenameTable( SCTAB nTab, const OUString& rName, sal_Bool bRecord, sal_Bool bApi );
     virtual sal_Bool    ApplyAttributes( const ScMarkData& rMark, const ScPatternAttr& rPattern,
-                                         sal_Bool bRecord, sal_Bool bApi );
+                                         sal_Bool bApi );
     virtual sal_Bool    ApplyStyle( const ScMarkData& rMark, const OUString& rStyleName,
-                                    sal_Bool bRecord, sal_Bool bApi );
+                                    sal_Bool bApi );
     virtual sal_Bool    MergeCells( const ScCellMergeOption& rOption, sal_Bool bContents,
                                     sal_Bool bRecord, sal_Bool bApi );
 };


More information about the Libreoffice-commits mailing list