[Libreoffice-commits] core.git: lingucomponent/source sfx2/inc sfx2/source starmath/source svl/qa svx/inc svx/source

Alexandre Vicenzi vicenzi.alexandre at gmail.com
Thu Jan 30 03:19:13 PST 2014


 lingucomponent/source/thesaurus/libnth/nthesdta.hxx     |    3 
 sfx2/inc/bitset.hxx                                     |   49 ----------------
 sfx2/source/inc/slotserv.hxx                            |   11 ---
 starmath/source/cfgitem.hxx                             |   10 ---
 svl/qa/unit/test_URIHelper.cxx                          |    1 
 svx/inc/pch/precompiled_svx.hxx                         |    1 
 svx/source/accessibility/AccessibleTextEventQueue.hxx   |    1 
 svx/source/customshapes/EnhancedCustomShapeFontWork.cxx |    1 
 svx/source/inc/fmslotinvalidator.hxx                    |   11 ---
 svx/source/inc/formtoolbars.hxx                         |   11 ---
 10 files changed, 1 insertion(+), 98 deletions(-)

New commits:
commit c5685ec791fbce43e982ffecc9e062063ec7e3d7
Author: Alexandre Vicenzi <vicenzi.alexandre at gmail.com>
Date:   Wed Jan 29 20:46:48 2014 -0200

    fdo#63154 Removed unused solar.h ref. in linguc., sfx2, starmath, svl and svx
    
    Change-Id: I241661119371b75804fcf9215ff5e5da2a5b9265
    Reviewed-on: https://gerrit.libreoffice.org/7732
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/lingucomponent/source/thesaurus/libnth/nthesdta.hxx b/lingucomponent/source/thesaurus/libnth/nthesdta.hxx
index dce8c47..7e09841 100644
--- a/lingucomponent/source/thesaurus/libnth/nthesdta.hxx
+++ b/lingucomponent/source/thesaurus/libnth/nthesdta.hxx
@@ -22,9 +22,6 @@
 
 
 #include <com/sun/star/linguistic2/XMeaning.hpp>
-
-#include <tools/solar.h>
-
 #include <cppuhelper/implbase1.hxx>
 
 
diff --git a/sfx2/inc/bitset.hxx b/sfx2/inc/bitset.hxx
index 6fb0424..0711513 100644
--- a/sfx2/inc/bitset.hxx
+++ b/sfx2/inc/bitset.hxx
@@ -19,8 +19,6 @@
 #ifndef INCLUDED_SFX2_INC_BITSET_HXX
 #define INCLUDED_SFX2_INC_BITSET_HXX
 
-#include <tools/solar.h>
-
 class BitSet
 {
 private:
@@ -64,174 +62,129 @@ public:
     sal_Bool operator!=( sal_uInt16 nBit ) const;
 
 };
-//--------------------------------------------------------------------
 
 // returns sal_True if the set is empty
-
-
-
 inline sal_Bool BitSet::operator!() const
 {
     return nCount == 0;
 }
-//--------------------------------------------------------------------
 
 // returns the number of bits in the bitset
-
 inline sal_uInt16 BitSet::Count() const
 {
     return nCount;
 }
-//--------------------------------------------------------------------
 
 // creates the union of two bitset
-
 inline BitSet BitSet::operator|( const BitSet& rSet ) const
 {
     return BitSet(*this) |= rSet;
 }
-//--------------------------------------------------------------------
 
 // creates the union of a bitset with a single bit
-
 inline BitSet BitSet::operator|( sal_uInt16 nBit ) const
 {
     return BitSet(*this) |= nBit;
 }
-//--------------------------------------------------------------------
 
 // creates the asymetric difference
-
 inline BitSet BitSet::operator-( const BitSet& ) const
 {
     return BitSet();
 }
-//--------------------------------------------------------------------
 
 // creates the asymetric difference with a single bit
-
-
 inline BitSet BitSet::operator-( sal_uInt16 ) const
 {
     return BitSet();
 }
-//--------------------------------------------------------------------
 
 // removes the bits contained in rSet
-
 inline BitSet& BitSet::operator-=( const BitSet& )
 {
     return *this;
 }
-//--------------------------------------------------------------------
-
 
 // creates the intersection with another bitset
-
 inline BitSet BitSet::operator&( const BitSet& ) const
 {
     return BitSet();
 }
-//--------------------------------------------------------------------
 
 // intersects with another bitset
-
 inline BitSet& BitSet::operator&=( const BitSet& )
 {
     return *this;
 }
-//--------------------------------------------------------------------
 
 // creates the symetric difference with another bitset
-
 inline BitSet BitSet::operator^( const BitSet& ) const
 {
     return BitSet();
 }
-//--------------------------------------------------------------------
 
 // creates the symetric difference with a single bit
-
 inline BitSet BitSet::operator^( sal_uInt16 ) const
 {
     return BitSet();
 }
-//--------------------------------------------------------------------
 
 // builds the symetric difference with another bitset
-
 inline BitSet& BitSet::operator^=( const BitSet& )
 {
     return *this;
 }
-//--------------------------------------------------------------------
+
 #ifdef BITSET_READY
 // builds the symetric difference with a single bit
-
 inline BitSet& BitSet::operator^=( sal_uInt16 )
 {
     // crash!!!
     return BitSet();
 }
 #endif
-//--------------------------------------------------------------------
 
 // determines if the other bitset is a real superset
-
 inline sal_Bool BitSet::IsRealSubSet( const BitSet& ) const
 {
     return sal_False;
 }
-//--------------------------------------------------------------------
 
 // determines if the other bitset is a superset or equal
-
 inline sal_Bool BitSet::IsSubSet( const BitSet& ) const
 {
     return sal_False;
 }
-//--------------------------------------------------------------------
 
 // determines if the other bitset is a real subset
-
 inline sal_Bool BitSet::IsRealSuperSet( const BitSet& ) const
 {
     return sal_False;
 }
 
-//--------------------------------------------------------------------
-
 // determines if the other bitset is a subset or equal
-
 inline sal_Bool BitSet::IsSuperSet( const BitSet& ) const
 {
     return sal_False;
 }
-//--------------------------------------------------------------------
 
 // determines if the bit is the only one in the bitset
-
 inline sal_Bool BitSet::operator==( sal_uInt16 ) const
 {
     return sal_False;
 }
-//--------------------------------------------------------------------
 
 // determines if the bitsets aren't equal
-
 inline sal_Bool BitSet::operator!=( const BitSet& rSet ) const
 {
     return !( *this == rSet );
 }
-//--------------------------------------------------------------------
 
 // determines if the bitset doesn't contain only this bit
-
 inline sal_Bool BitSet::operator!=( sal_uInt16 nBit ) const
 {
     return !( *this == nBit );
 }
-//--------------------------------------------------------------------
 
 class IndexBitSet : BitSet
 {
diff --git a/sfx2/source/inc/slotserv.hxx b/sfx2/source/inc/slotserv.hxx
index 0d259ef..c98a9c4 100644
--- a/sfx2/source/inc/slotserv.hxx
+++ b/sfx2/source/inc/slotserv.hxx
@@ -19,8 +19,6 @@
 #ifndef INCLUDED_SFX2_SOURCE_INC_SLOTSERV_HXX
 #define INCLUDED_SFX2_SOURCE_INC_SLOTSERV_HXX
 
-#include <tools/solar.h>
-
 class SfxSlot;
 
 class SfxSlotServer
@@ -42,37 +40,28 @@ public:
     void                Invalidate() { _pSlot = 0; }
 };
 
-//--------------------------------------------------------------------
-
 inline SfxSlotServer::SfxSlotServer( const SfxSlot &rSlot, sal_uInt16 nShell ):
     _pSlot( &rSlot),
     _nShellLevel( nShell )
 {
 }
 
-//--------------------------------------------------------------------
-
 inline SfxSlotServer::SfxSlotServer():
     _pSlot(0),
     _nShellLevel(0)
 {
 }
 
-//--------------------------------------------------------------------
-
 inline sal_uInt16 SfxSlotServer::GetShellLevel() const
 {
     return _nShellLevel;
 }
 
-//--------------------------------------------------------------------
-
 inline const SfxSlot* SfxSlotServer::GetSlot() const
 {
     return _pSlot;
 }
 
-
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/starmath/source/cfgitem.hxx b/starmath/source/cfgitem.hxx
index ac95c21..06d143a 100644
--- a/starmath/source/cfgitem.hxx
+++ b/starmath/source/cfgitem.hxx
@@ -31,7 +31,6 @@
 #include <com/sun/star/uno/Sequence.hxx>
 #include <com/sun/star/uno/Any.h>
 
-#include <tools/solar.h>
 #include <rtl/ustring.hxx>
 #include <unotools/configitem.hxx>
 #include <vcl/timer.hxx>
@@ -44,9 +43,6 @@ class SmFormat;
 class Font;
 struct SmCfgOther;
 
-/////////////////////////////////////////////////////////////////
-
-
 struct SmFontFormat
 {
     OUString        aName;
@@ -63,7 +59,6 @@ struct SmFontFormat
     bool            operator == ( const SmFontFormat &rFntFmt ) const;
 };
 
-
 struct SmFntFmtListEntry
 {
     OUString        aId;
@@ -100,9 +95,6 @@ public:
     void    SetModified( bool bVal )    { bModified = bVal; }
 };
 
-
-/////////////////////////////////////////////////////////////////
-
 class SmMathConfig : public utl::ConfigItem
 {
     SmFormat *          pFormat;
@@ -189,8 +181,6 @@ public:
     void            SetAutoRedraw( sal_Bool bVal );
 };
 
-/////////////////////////////////////////////////////////////////
-
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svl/qa/unit/test_URIHelper.cxx b/svl/qa/unit/test_URIHelper.cxx
index 313ce65..2c67270 100644
--- a/svl/qa/unit/test_URIHelper.cxx
+++ b/svl/qa/unit/test_URIHelper.cxx
@@ -54,7 +54,6 @@
 #include "sal/macros.h"
 #include "sal/types.h"
 #include "svl/urihelper.hxx"
-#include "tools/solar.h"
 #include "unotools/charclass.hxx"
 
 namespace com { namespace sun { namespace star { namespace ucb {
diff --git a/svx/inc/pch/precompiled_svx.hxx b/svx/inc/pch/precompiled_svx.hxx
index ba48f6c..647b55ff 100644
--- a/svx/inc/pch/precompiled_svx.hxx
+++ b/svx/inc/pch/precompiled_svx.hxx
@@ -409,7 +409,6 @@
 #include <tools/resary.hxx>
 #include <tools/resid.hxx>
 #include <tools/shl.hxx>
-#include <tools/solar.h>
 #include <tools/stream.hxx>
 #include <tools/urlobj.hxx>
 #include <unicode/uchar.h>
diff --git a/svx/source/accessibility/AccessibleTextEventQueue.hxx b/svx/source/accessibility/AccessibleTextEventQueue.hxx
index ea0e4db..74cf7e0 100644
--- a/svx/source/accessibility/AccessibleTextEventQueue.hxx
+++ b/svx/source/accessibility/AccessibleTextEventQueue.hxx
@@ -23,7 +23,6 @@
 #include <memory>
 #include <list>
 #include <algorithm>
-#include <tools/solar.h>
 #include <tools/rtti.hxx>
 
 class SfxHint;
diff --git a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
index 07e7b64..112c544 100644
--- a/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeFontWork.cxx
@@ -18,7 +18,6 @@
  */
 
 #include "EnhancedCustomShapeFontWork.hxx"
-#include <tools/solar.h>
 #include <svx/svddef.hxx>
 #include <svx/svdogrp.hxx>
 #include <svx/svdopath.hxx>
diff --git a/svx/source/inc/fmslotinvalidator.hxx b/svx/source/inc/fmslotinvalidator.hxx
index bceead4..62bbdbf 100644
--- a/svx/source/inc/fmslotinvalidator.hxx
+++ b/svx/source/inc/fmslotinvalidator.hxx
@@ -20,18 +20,10 @@
 #ifndef INCLUDED_SVX_SOURCE_INC_FMSLOTINVALIDATOR_HXX
 #define INCLUDED_SVX_SOURCE_INC_FMSLOTINVALIDATOR_HXX
 
-#include <tools/solar.h>
-
-//........................................................................
 namespace svx
 {
-//........................................................................
-
     typedef sal_uInt16 SfxSlotId;
 
-    //====================================================================
-    //= ISlotInvalidator
-    //====================================================================
     class ISlotInvalidator
     {
     public:
@@ -40,10 +32,7 @@ namespace svx
     protected:
         ~ISlotInvalidator() {}
     };
-
-//........................................................................
 } // namespace svx
-//........................................................................
 
 #endif // INCLUDED_SVX_SOURCE_INC_FMSLOTINVALIDATOR_HXX
 
diff --git a/svx/source/inc/formtoolbars.hxx b/svx/source/inc/formtoolbars.hxx
index 379a668..0e1111f 100644
--- a/svx/source/inc/formtoolbars.hxx
+++ b/svx/source/inc/formtoolbars.hxx
@@ -22,19 +22,10 @@
 
 #include "fmdocumentclassification.hxx"
 #include <com/sun/star/frame/XLayoutManager.hpp>
-
-#include <tools/solar.h>
-
 #include <svx/svxdllapi.h>
 
-//........................................................................
 namespace svxform
 {
-//........................................................................
-
-    //====================================================================
-    //= FormToolboxes
-    //====================================================================
     class FormToolboxes
     {
     private:
@@ -74,9 +65,7 @@ namespace svxform
         }
     };
 
-//........................................................................
 } // namespace svxform
-//........................................................................
 
 #endif // INCLUDED_SVX_SOURCE_INC_FORMTOOLBARS_HXX
 


More information about the Libreoffice-commits mailing list