diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-06 18:54:13 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-06 19:37:47 +0300 |
commit | 88bea0a5a8b1e5c1fb601f4e4ba61ba7bce38a3a (patch) | |
tree | 3efd83cf3c67f727f473b73da69e30963f08dc0f /unotools/source/config/historyoptions.cxx | |
parent | dcb88d170b6ced0ee805b787c1e9be820ff90d25 (diff) |
Kill superfluous vertical whitespace
Change-Id: I949ba575951998d36cb4d38746f2182633046b3b
Diffstat (limited to 'unotools/source/config/historyoptions.cxx')
-rw-r--r-- | unotools/source/config/historyoptions.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/unotools/source/config/historyoptions.cxx b/unotools/source/config/historyoptions.cxx index 124cee608287..3c41556924d3 100644 --- a/unotools/source/config/historyoptions.cxx +++ b/unotools/source/config/historyoptions.cxx @@ -17,7 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - #include <osl/file.hxx> #include <unotools/historyoptions.hxx> #include <unotools/configmgr.hxx> @@ -69,7 +68,6 @@ namespace { const char s_sThumbnail[] = "Thumbnail"; } - // class SvtHistoryOptions_Impl // redesigned @@ -94,7 +92,6 @@ private: css::uno::Reference< css::container::XNameAccess > m_xCommonXCU; }; - // constructor SvtHistoryOptions_Impl::SvtHistoryOptions_Impl() @@ -124,14 +121,12 @@ SvtHistoryOptions_Impl::SvtHistoryOptions_Impl() } } - // destructor SvtHistoryOptions_Impl::~SvtHistoryOptions_Impl() { } - // public method // Attention: We return the max. size of our internal lists - That is the capacity not the size! @@ -172,7 +167,6 @@ sal_uInt32 SvtHistoryOptions_Impl::GetSize( EHistoryType eHistory ) return nSize; } - void SvtHistoryOptions_Impl::impl_truncateList ( EHistoryType eHistory, sal_uInt32 nSize ) { css::uno::Reference< css::container::XNameAccess > xList; @@ -230,7 +224,6 @@ void SvtHistoryOptions_Impl::impl_truncateList ( EHistoryType eHistory, sal_uInt } } - // public method // Clear specified history list @@ -302,7 +295,6 @@ static bool lcl_fileOpenable(const OUString &rURL) return false; } - // public method // get a sequence list from the items @@ -403,7 +395,6 @@ Sequence< Sequence< PropertyValue > > SvtHistoryOptions_Impl::GetList( EHistoryT return seqReturn; } - // public method // implements a deque in XML @@ -562,7 +553,6 @@ void SvtHistoryOptions_Impl::AppendItem(EHistoryType eHistory, } } - // initialize static member // DON'T DO IT IN YOUR HEADER! // see definition for further information @@ -570,7 +560,6 @@ void SvtHistoryOptions_Impl::AppendItem(EHistoryType eHistory, SvtHistoryOptions_Impl* SvtHistoryOptions::m_pDataContainer = NULL ; sal_Int32 SvtHistoryOptions::m_nRefCount = 0 ; - // constructor SvtHistoryOptions::SvtHistoryOptions() @@ -588,7 +577,6 @@ SvtHistoryOptions::SvtHistoryOptions() } } - // destructor SvtHistoryOptions::~SvtHistoryOptions() @@ -606,7 +594,6 @@ SvtHistoryOptions::~SvtHistoryOptions() } } - // public method sal_uInt32 SvtHistoryOptions::GetSize( EHistoryType eHistory ) const @@ -615,7 +602,6 @@ sal_uInt32 SvtHistoryOptions::GetSize( EHistoryType eHistory ) const return m_pDataContainer->GetSize( eHistory ); } - // public method void SvtHistoryOptions::Clear( EHistoryType eHistory ) @@ -624,7 +610,6 @@ void SvtHistoryOptions::Clear( EHistoryType eHistory ) m_pDataContainer->Clear( eHistory ); } - // public method Sequence< Sequence< PropertyValue > > SvtHistoryOptions::GetList( EHistoryType eHistory ) const @@ -633,7 +618,6 @@ Sequence< Sequence< PropertyValue > > SvtHistoryOptions::GetList( EHistoryType e return m_pDataContainer->GetList( eHistory ); } - // public method void SvtHistoryOptions::AppendItem(EHistoryType eHistory, @@ -649,7 +633,6 @@ namespace class theHistoryOptionsMutex : public rtl::Static<osl::Mutex, theHistoryOptionsMutex>{}; } - // private method Mutex& SvtHistoryOptions::GetOwnStaticMutex() |