summaryrefslogtreecommitdiff
path: root/unotools/source/config/historyoptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/config/historyoptions.cxx')
-rw-r--r--unotools/source/config/historyoptions.cxx17
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()