[Libreoffice-commits] .: 3 commits - binfilter/bf_sw

Caolán McNamara caolan at kemper.freedesktop.org
Mon May 23 06:26:25 PDT 2011


 binfilter/bf_sw/source/ui/config/makefile.mk     |    2 -
 binfilter/bf_sw/source/ui/config/sw_dbconfig.cxx |    2 -
 binfilter/bf_sw/source/ui/config/sw_fontcfg.cxx  |    2 -
 binfilter/bf_sw/source/ui/config/sw_modcfg.cxx   |   12 +++++-----
 binfilter/bf_sw/source/ui/config/sw_prtopt.cxx   |    2 -
 binfilter/bf_sw/source/ui/config/sw_usrpref.cxx  |   10 ++++----
 binfilter/bf_sw/source/ui/config/sw_viewopt.cxx  |   26 +++++++++++-----------
 binfilter/bf_sw/source/ui/fldui/makefile.mk      |    2 -
 binfilter/bf_sw/source/ui/inc/makefile.mk        |   27 -----------------------
 9 files changed, 27 insertions(+), 58 deletions(-)

New commits:
commit 5939232dfb7c78cabb4c01837a06b10d2e6a72a5
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon May 23 14:26:03 2011 +0100

    WaE: mark this dir as warnings free

diff --git a/binfilter/bf_sw/source/ui/config/makefile.mk b/binfilter/bf_sw/source/ui/config/makefile.mk
index 77003b9..3c77a2c 100644
--- a/binfilter/bf_sw/source/ui/config/makefile.mk
+++ b/binfilter/bf_sw/source/ui/config/makefile.mk
@@ -25,8 +25,6 @@
 #
 #*************************************************************************
 
-EXTERNAL_WARNINGS_NOT_ERRORS := TRUE
-
 PRJ=..$/..$/..$/..
 BFPRJ=..$/..$/..
 
diff --git a/binfilter/bf_sw/source/ui/config/sw_dbconfig.cxx b/binfilter/bf_sw/source/ui/config/sw_dbconfig.cxx
index c0c97b1..b1daa11 100644
--- a/binfilter/bf_sw/source/ui/config/sw_dbconfig.cxx
+++ b/binfilter/bf_sw/source/ui/config/sw_dbconfig.cxx
@@ -126,7 +126,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwDBConfig::Commit() {}
-    void SwDBConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwDBConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 }
 
diff --git a/binfilter/bf_sw/source/ui/config/sw_fontcfg.cxx b/binfilter/bf_sw/source/ui/config/sw_fontcfg.cxx
index 39811ab..2e092f3 100644
--- a/binfilter/bf_sw/source/ui/config/sw_fontcfg.cxx
+++ b/binfilter/bf_sw/source/ui/config/sw_fontcfg.cxx
@@ -230,7 +230,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwStdFontConfig::Commit() {}
-    void SwStdFontConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwStdFontConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 }
 
diff --git a/binfilter/bf_sw/source/ui/config/sw_modcfg.cxx b/binfilter/bf_sw/source/ui/config/sw_modcfg.cxx
index a140568..b6e0746 100644
--- a/binfilter/bf_sw/source/ui/config/sw_modcfg.cxx
+++ b/binfilter/bf_sw/source/ui/config/sw_modcfg.cxx
@@ -231,7 +231,7 @@ using ::rtl::OUString;
 
 
     void SwRevisionConfig::Commit() {}
-    void SwRevisionConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwRevisionConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 //-----------------------------------------------------------------------------
 
@@ -388,9 +388,9 @@ using ::rtl::OUString;
 /*N*/ SwInsertConfig::SwInsertConfig(sal_Bool bWeb) :
 /*N*/     ConfigItem(bWeb ? C2U("Office.WriterWeb/Insert") : C2U("Office.Writer/Insert"),
 /*N*/         CONFIG_MODE_DELAYED_UPDATE|CONFIG_MODE_RELEASE_TREE),
-/*N*/ 	bIsWeb(bWeb),
 /*N*/ 	pCapOptions(0),
-/*N*/ 	pOLEMiscOpt(0)
+/*N*/ 	pOLEMiscOpt(0),
+/*N*/ 	bIsWeb(bWeb)
 /*N*/ {
 /*N*/ 	aGlobalNames[GLOB_NAME_CALC	  ] = SvGlobalName(BF_SO3_SC_CLASSID);
 /*N*/ 	aGlobalNames[GLOB_NAME_IMPRESS] = SvGlobalName(BF_SO3_SIMPRESS_CLASSID);
@@ -404,7 +404,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwInsertConfig::Commit() {}
-    void SwInsertConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwInsertConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
@@ -675,7 +675,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwTableConfig::Commit() {}
-    void SwTableConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwTableConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
@@ -699,7 +699,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwMiscConfig::Commit() {}
-    void SwMiscConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwMiscConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
diff --git a/binfilter/bf_sw/source/ui/config/sw_prtopt.cxx b/binfilter/bf_sw/source/ui/config/sw_prtopt.cxx
index 4acccbe..df5672f 100644
--- a/binfilter/bf_sw/source/ui/config/sw_prtopt.cxx
+++ b/binfilter/bf_sw/source/ui/config/sw_prtopt.cxx
@@ -129,7 +129,7 @@ using ::rtl::OUString;
 
 
     void SwPrintOptions::Commit() {}
-    void SwPrintOptions::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwPrintOptions::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
diff --git a/binfilter/bf_sw/source/ui/config/sw_usrpref.cxx b/binfilter/bf_sw/source/ui/config/sw_usrpref.cxx
index 80aa1e4..fea231d 100644
--- a/binfilter/bf_sw/source/ui/config/sw_usrpref.cxx
+++ b/binfilter/bf_sw/source/ui/config/sw_usrpref.cxx
@@ -86,7 +86,7 @@ using ::rtl::OUString;
 
 
     void SwContentViewConfig::Commit() {}
-    void SwContentViewConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwContentViewConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 /*N*/ Sequence<OUString> SwContentViewConfig::GetPropertyNames()
 /*N*/ {
@@ -217,7 +217,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwLayoutViewConfig::Commit() {}
-    void SwLayoutViewConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwLayoutViewConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
@@ -309,7 +309,7 @@ using ::rtl::OUString;
 
 
     void SwGridConfig::Commit() {}
-    void SwGridConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwGridConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 /*N*/ Sequence<OUString> SwGridConfig::GetPropertyNames()
 /*N*/ {
@@ -402,7 +402,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwCursorConfig::Commit() {}
-    void SwCursorConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwCursorConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
@@ -463,7 +463,7 @@ using ::rtl::OUString;
 /*N*/ }
 
     void SwWebColorConfig::Commit() {}
-    void SwWebColorConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& aPropertyNames ) {}
+    void SwWebColorConfig::Notify( const ::com::sun::star::uno::Sequence< rtl::OUString >& ) {}
 
 
 
diff --git a/binfilter/bf_sw/source/ui/config/sw_viewopt.cxx b/binfilter/bf_sw/source/ui/config/sw_viewopt.cxx
index 061a305..69dee8b 100644
--- a/binfilter/bf_sw/source/ui/config/sw_viewopt.cxx
+++ b/binfilter/bf_sw/source/ui/config/sw_viewopt.cxx
@@ -87,18 +87,18 @@ static const char aPostItStr[] = "  ";
 |*
 |*************************************************************************/
 
-/*M*/ SwViewOption::SwViewOption() :
-/*M*/ 	nZoom( 100 ),
-/*M*/ 	nPagePrevRow( 1 ),
-/*M*/ 	nPagePrevCol( 2 ),
-/*M*/ 	eZoom( 0 ),
-/*M*/ 	nTblDest(TBL_DEST_CELL),
-/*M*/ 	bReadonly(FALSE),
-/*M*/     bSelectionInReadonly(FALSE),
-/*M*/ 	aRetoucheColor( COL_TRANSPARENT ),
-/*M*/ 	nShdwCrsrFillMode( FILL_TAB ),
-/*M*/     bStarOneSetting(FALSE),
-/*M*/     bIsPagePreview(FALSE)
+/*M*/ SwViewOption::SwViewOption()
+/*M*/ : aRetoucheColor( COL_TRANSPARENT )
+/*M*/ , nPagePrevRow( 1 )
+/*M*/ , nPagePrevCol( 2 )
+/*M*/ , nShdwCrsrFillMode( FILL_TAB )
+/*M*/ , bReadonly(FALSE)
+/*M*/ , bStarOneSetting(FALSE)
+/*M*/ , bIsPagePreview(FALSE)
+/*M*/ , bSelectionInReadonly(FALSE)
+/*M*/ , nZoom( 100 )
+/*M*/ , eZoom( 0 )
+/*M*/ , nTblDest(TBL_DEST_CELL)
 /*M*/ {
 /*M*/ 	// Initialisierung ist jetzt etwas einfacher
 /*M*/ 	// alle Bits auf 0
@@ -296,7 +296,7 @@ static const char aPostItStr[] = "  ";
 /*N*/ }
 
 /*************************************************************************/
-/*N*/ void SwViewOption::SetAppearanceFlag(sal_Int32 /*nFlag*/, BOOL bSet, BOOL /*bSaveInConfig*/ )
+/*N*/ void SwViewOption::SetAppearanceFlag(sal_Int32 /*nFlag*/, BOOL /*bSet*/, BOOL /*bSaveInConfig*/ )
 /*N*/ {DBG_BF_ASSERT(0, "STRIP");
 /*N*/ }
 
commit 81bb9e6487621700ac6afd99ab784e062db3efe4
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon May 23 14:16:20 2011 +0100

    WaE: mark this dir as warnings free

diff --git a/binfilter/bf_sw/source/ui/fldui/makefile.mk b/binfilter/bf_sw/source/ui/fldui/makefile.mk
index b922cf5..7d69fc7 100644
--- a/binfilter/bf_sw/source/ui/fldui/makefile.mk
+++ b/binfilter/bf_sw/source/ui/fldui/makefile.mk
@@ -25,8 +25,6 @@
 #
 #*************************************************************************
 
-EXTERNAL_WARNINGS_NOT_ERRORS := TRUE
-
 PRJ=..$/..$/..$/..
 BFPRJ=..$/..$/..
 
commit dfb05afaec63e4537a18947695106052574b6593
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon May 23 14:15:31 2011 +0100

    pointless makefile

diff --git a/binfilter/bf_sw/source/ui/inc/makefile.mk b/binfilter/bf_sw/source/ui/inc/makefile.mk
deleted file mode 100644
index 0a7dfb8..0000000
--- a/binfilter/bf_sw/source/ui/inc/makefile.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-# 
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org.  If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-EXTERNAL_WARNINGS_NOT_ERRORS := TRUE


More information about the Libreoffice-commits mailing list