loplugin:privatebase: Make derivation from noncopyable explicitly private
Change-Id: Ia410950353aec0106ea82d025ed3ee89c79ca127
This commit is contained in:
parent
ea5b48e9da
commit
9ff5abf2e1
@ -21,7 +21,7 @@ namespace vlc
|
|||||||
{
|
{
|
||||||
namespace wrapper
|
namespace wrapper
|
||||||
{
|
{
|
||||||
class EventHandler : public ::osl::Thread, boost::noncopyable
|
class EventHandler : public ::osl::Thread, private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
EventHandler();
|
EventHandler();
|
||||||
|
@ -24,7 +24,7 @@ namespace vlc
|
|||||||
namespace wrapper
|
namespace wrapper
|
||||||
{
|
{
|
||||||
class EventHandler;
|
class EventHandler;
|
||||||
class EventManager : boost::noncopyable
|
class EventManager : private boost::noncopyable
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -31,7 +31,7 @@ namespace vlc
|
|||||||
namespace wrapper
|
namespace wrapper
|
||||||
{
|
{
|
||||||
template<class T>
|
template<class T>
|
||||||
class ThreadsafeQueue : boost::noncopyable
|
class ThreadsafeQueue : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ThreadsafeQueue();
|
ThreadsafeQueue();
|
||||||
@ -78,4 +78,4 @@ void ThreadsafeQueue<T>::pop( T& data )
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // INCLUDED_AVMEDIA_SOURCE_VLC_WRAPPER_THREADSAFEQUEUE_HXX
|
#endif // INCLUDED_AVMEDIA_SOURCE_VLC_WRAPPER_THREADSAFEQUEUE_HXX
|
||||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||||
|
@ -34,7 +34,7 @@ namespace basctl
|
|||||||
class ScriptDocument;
|
class ScriptDocument;
|
||||||
|
|
||||||
|
|
||||||
class SAL_NO_VTABLE DocumentEventListener : ::boost::noncopyable
|
class SAL_NO_VTABLE DocumentEventListener : private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void onDocumentCreated( const ScriptDocument& _rDocument ) = 0;
|
virtual void onDocumentCreated( const ScriptDocument& _rDocument ) = 0;
|
||||||
|
@ -56,7 +56,7 @@ public:
|
|||||||
mutable css::uno::Sequence<double> Doubles;
|
mutable css::uno::Sequence<double> Doubles;
|
||||||
};
|
};
|
||||||
|
|
||||||
class VDataSeries final : boost::noncopyable
|
class VDataSeries final : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
VDataSeries( const css::uno::Reference<css::chart2::XDataSeries>& xDataSeries );
|
VDataSeries( const css::uno::Reference<css::chart2::XDataSeries>& xDataSeries );
|
||||||
|
@ -36,7 +36,7 @@ namespace drawinglayer
|
|||||||
{
|
{
|
||||||
namespace // anonymous namespace
|
namespace // anonymous namespace
|
||||||
{
|
{
|
||||||
class TubeBuffer : boost::noncopyable
|
class TubeBuffer : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
// data for buffered tube primitives
|
// data for buffered tube primitives
|
||||||
@ -118,7 +118,7 @@ namespace drawinglayer
|
|||||||
return rTheBuffer.getLineTubeSegments(nSegments, rMaterial);
|
return rTheBuffer.getLineTubeSegments(nSegments, rMaterial);
|
||||||
}
|
}
|
||||||
|
|
||||||
class CapBuffer : boost::noncopyable
|
class CapBuffer : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
// data for buffered cap primitives
|
// data for buffered cap primitives
|
||||||
@ -193,7 +193,7 @@ namespace drawinglayer
|
|||||||
return rTheBuffer.getLineCapSegments(nSegments, rMaterial);
|
return rTheBuffer.getLineCapSegments(nSegments, rMaterial);
|
||||||
}
|
}
|
||||||
|
|
||||||
class CapRoundBuffer : boost::noncopyable
|
class CapRoundBuffer : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
// data for buffered capround primitives
|
// data for buffered capround primitives
|
||||||
|
@ -233,7 +233,7 @@ public:
|
|||||||
|
|
||||||
// class ContentNode
|
// class ContentNode
|
||||||
|
|
||||||
class ContentNode : boost::noncopyable
|
class ContentNode : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
OUString maString;
|
OUString maString;
|
||||||
|
@ -123,7 +123,7 @@ public:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class ContentInfo : boost::noncopyable
|
class ContentInfo : private boost::noncopyable
|
||||||
{
|
{
|
||||||
friend class EditTextObjectImpl;
|
friend class EditTextObjectImpl;
|
||||||
public:
|
public:
|
||||||
@ -173,7 +173,7 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class EditTextObjectImpl : boost::noncopyable
|
class EditTextObjectImpl : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef std::vector<std::unique_ptr<ContentInfo> > ContentInfosType;
|
typedef std::vector<std::unique_ptr<ContentInfo> > ContentInfosType;
|
||||||
|
@ -389,7 +389,7 @@ public:
|
|||||||
// ImpEditEngine
|
// ImpEditEngine
|
||||||
|
|
||||||
|
|
||||||
class ImpEditEngine : public SfxListener, boost::noncopyable
|
class ImpEditEngine : public SfxListener, private boost::noncopyable
|
||||||
{
|
{
|
||||||
friend class EditEngine;
|
friend class EditEngine;
|
||||||
friend class EditDbg;
|
friend class EditDbg;
|
||||||
|
@ -67,7 +67,7 @@ enum UpdateState {
|
|||||||
UPDATESTATES_COUNT
|
UPDATESTATES_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
class UpdateHandler : ::boost::noncopyable,
|
class UpdateHandler : private ::boost::noncopyable,
|
||||||
public cppu::WeakImplHelper< css::awt::XActionListener,
|
public cppu::WeakImplHelper< css::awt::XActionListener,
|
||||||
css::awt::XTopWindowListener,
|
css::awt::XTopWindowListener,
|
||||||
css::task::XInteractionHandler,
|
css::task::XInteractionHandler,
|
||||||
|
@ -35,7 +35,7 @@ typedef ::cppu::WeakComponentImplHelper<
|
|||||||
|
|
||||||
class ODFSerializer : private cppu::BaseMutex,
|
class ODFSerializer : private cppu::BaseMutex,
|
||||||
public ODFSerializerBase,
|
public ODFSerializerBase,
|
||||||
boost::noncopyable
|
private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit ODFSerializer(const uno::Reference<io::XOutputStream>& xOut) :
|
explicit ODFSerializer(const uno::Reference<io::XOutputStream>& xOut) :
|
||||||
|
@ -236,7 +236,7 @@ class ScChart2DataSequence : public
|
|||||||
css::beans::XPropertySet,
|
css::beans::XPropertySet,
|
||||||
css::lang::XServiceInfo>,
|
css::lang::XServiceInfo>,
|
||||||
SfxListener,
|
SfxListener,
|
||||||
boost::noncopyable
|
private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit ScChart2DataSequence( ScDocument* pDoc,
|
explicit ScChart2DataSequence( ScDocument* pDoc,
|
||||||
|
@ -29,7 +29,7 @@ namespace sc {
|
|||||||
struct ColumnBlockPosition;
|
struct ColumnBlockPosition;
|
||||||
class ColumnBlockPositionSet;
|
class ColumnBlockPositionSet;
|
||||||
|
|
||||||
class ClipContextBase : boost::noncopyable
|
class ClipContextBase : private boost::noncopyable
|
||||||
{
|
{
|
||||||
std::unique_ptr<ColumnBlockPositionSet> mpSet;
|
std::unique_ptr<ColumnBlockPositionSet> mpSet;
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#include "column.hxx"
|
#include "column.hxx"
|
||||||
|
|
||||||
class ScColumnTextWidthIterator : boost::noncopyable
|
class ScColumnTextWidthIterator : private boost::noncopyable
|
||||||
{
|
{
|
||||||
sc::CellTextAttrStoreType& mrCellTextAttrs;
|
sc::CellTextAttrStoreType& mrCellTextAttrs;
|
||||||
const size_t mnEnd;
|
const size_t mnEnd;
|
||||||
|
@ -47,7 +47,7 @@ struct SC_DLLPUBLIC ColRowSpan
|
|||||||
* Structure that stores segments of boolean flags per column, and perform
|
* Structure that stores segments of boolean flags per column, and perform
|
||||||
* custom action on those segments.
|
* custom action on those segments.
|
||||||
*/
|
*/
|
||||||
class ColumnSpanSet : boost::noncopyable
|
class ColumnSpanSet : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef mdds::flat_segment_tree<SCROW, bool> ColumnSpansType;
|
typedef mdds::flat_segment_tree<SCROW, bool> ColumnSpansType;
|
||||||
|
@ -38,7 +38,7 @@ enum class SvtScriptType;
|
|||||||
* position calculation, or anything else that requires expensive
|
* position calculation, or anything else that requires expensive
|
||||||
* computation which are unnecessary and undesirable during import.
|
* computation which are unnecessary and undesirable during import.
|
||||||
*/
|
*/
|
||||||
class SC_DLLPUBLIC ScDocumentImport : boost::noncopyable
|
class SC_DLLPUBLIC ScDocumentImport : private boost::noncopyable
|
||||||
{
|
{
|
||||||
std::unique_ptr<ScDocumentImportImpl> mpImpl;
|
std::unique_ptr<ScDocumentImportImpl> mpImpl;
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ namespace sc {
|
|||||||
class DataStream;
|
class DataStream;
|
||||||
struct DocumentLinkManagerImpl;
|
struct DocumentLinkManagerImpl;
|
||||||
|
|
||||||
class DocumentLinkManager : boost::noncopyable
|
class DocumentLinkManager : private boost::noncopyable
|
||||||
{
|
{
|
||||||
std::unique_ptr<DocumentLinkManagerImpl> mpImpl;
|
std::unique_ptr<DocumentLinkManagerImpl> mpImpl;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ struct ScDPNumGroupInfo;
|
|||||||
* This class represents the cached data part of the datapilot cache table
|
* This class represents the cached data part of the datapilot cache table
|
||||||
* implementation.
|
* implementation.
|
||||||
*/
|
*/
|
||||||
class SC_DLLPUBLIC ScDPCache : boost::noncopyable
|
class SC_DLLPUBLIC ScDPCache : private boost::noncopyable
|
||||||
{
|
{
|
||||||
typedef std::unordered_set<OUString, OUStringHash> StringSetType;
|
typedef std::unordered_set<OUString, OUStringHash> StringSetType;
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ struct ScDPResultFilter
|
|||||||
* <p>If the pivot table layout only consists of either column or row
|
* <p>If the pivot table layout only consists of either column or row
|
||||||
* dimensions, the root node only has one child node.</p>
|
* dimensions, the root node only has one child node.</p>
|
||||||
*/
|
*/
|
||||||
class ScDPResultTree : boost::noncopyable
|
class ScDPResultTree : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef std::vector<double> ValuesType;
|
typedef std::vector<double> ValuesType;
|
||||||
|
@ -299,7 +299,7 @@ public:
|
|||||||
ScDPDimension* getByIndex(long nIndex) const;
|
ScDPDimension* getByIndex(long nIndex) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ScDPDimension : boost::noncopyable, public cppu::WeakImplHelper<
|
class ScDPDimension : private boost::noncopyable, public cppu::WeakImplHelper<
|
||||||
css::sheet::XHierarchiesSupplier,
|
css::sheet::XHierarchiesSupplier,
|
||||||
css::container::XNamed,
|
css::container::XNamed,
|
||||||
css::util::XCloneable,
|
css::util::XCloneable,
|
||||||
@ -706,7 +706,7 @@ public:
|
|||||||
SCROW GetSrcItemsCount();
|
SCROW GetSrcItemsCount();
|
||||||
};
|
};
|
||||||
|
|
||||||
class ScDPMember : boost::noncopyable, public cppu::WeakImplHelper<
|
class ScDPMember : private boost::noncopyable, public cppu::WeakImplHelper<
|
||||||
css::container::XNamed,
|
css::container::XNamed,
|
||||||
css::beans::XPropertySet,
|
css::beans::XPropertySet,
|
||||||
css::lang::XServiceInfo >
|
css::lang::XServiceInfo >
|
||||||
|
@ -24,7 +24,7 @@ namespace sc {
|
|||||||
struct ColumnBlockPosition;
|
struct ColumnBlockPosition;
|
||||||
class ColumnBlockPositionSet;
|
class ColumnBlockPositionSet;
|
||||||
|
|
||||||
class StartListeningContext : boost::noncopyable
|
class StartListeningContext : private boost::noncopyable
|
||||||
{
|
{
|
||||||
ScDocument& mrDoc;
|
ScDocument& mrDoc;
|
||||||
std::shared_ptr<ColumnBlockPositionSet> mpSet;
|
std::shared_ptr<ColumnBlockPositionSet> mpSet;
|
||||||
@ -36,7 +36,7 @@ public:
|
|||||||
ColumnBlockPosition* getBlockPosition(SCTAB nTab, SCCOL nCol);
|
ColumnBlockPosition* getBlockPosition(SCTAB nTab, SCCOL nCol);
|
||||||
};
|
};
|
||||||
|
|
||||||
class EndListeningContext : boost::noncopyable
|
class EndListeningContext : private boost::noncopyable
|
||||||
{
|
{
|
||||||
ScDocument& mrDoc;
|
ScDocument& mrDoc;
|
||||||
ColumnSpanSet maSet;
|
ColumnSpanSet maSet;
|
||||||
@ -60,7 +60,7 @@ public:
|
|||||||
void purgeEmptyBroadcasters();
|
void purgeEmptyBroadcasters();
|
||||||
};
|
};
|
||||||
|
|
||||||
class PurgeListenerAction : public ColumnSpanSet::Action, boost::noncopyable
|
class PurgeListenerAction : public ColumnSpanSet::Action, private boost::noncopyable
|
||||||
{
|
{
|
||||||
ScDocument& mrDoc;
|
ScDocument& mrDoc;
|
||||||
std::unique_ptr<ColumnBlockPosition> mpBlockPos;
|
std::unique_ptr<ColumnBlockPosition> mpBlockPos;
|
||||||
|
@ -114,7 +114,7 @@ class ScDBData;
|
|||||||
class ScDocumentImport;
|
class ScDocumentImport;
|
||||||
class ScHint;
|
class ScHint;
|
||||||
|
|
||||||
class ScTable : boost::noncopyable
|
class ScTable : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
typedef ::std::vector< ScRange > ScRangeVec;
|
typedef ::std::vector< ScRange > ScRangeVec;
|
||||||
|
@ -108,7 +108,7 @@ public:
|
|||||||
|
|
||||||
// ScHeaderFooterTextData: shared data between sub objects of a ScHeaderFooterTextObj
|
// ScHeaderFooterTextData: shared data between sub objects of a ScHeaderFooterTextObj
|
||||||
|
|
||||||
class ScHeaderFooterTextData : boost::noncopyable
|
class ScHeaderFooterTextData : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
EditTextObject* mpTextObj;
|
EditTextObject* mpTextObj;
|
||||||
|
@ -219,7 +219,7 @@ struct ScSortInfo
|
|||||||
};
|
};
|
||||||
IMPL_FIXEDMEMPOOL_NEWDEL( ScSortInfo )
|
IMPL_FIXEDMEMPOOL_NEWDEL( ScSortInfo )
|
||||||
|
|
||||||
class ScSortInfoArray : boost::noncopyable
|
class ScSortInfoArray : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ struct AreaListener
|
|||||||
Used in a Unique Associative Container.
|
Used in a Unique Associative Container.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class ScBroadcastArea : boost::noncopyable
|
class ScBroadcastArea : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
ScBroadcastArea* pUpdateChainNext;
|
ScBroadcastArea* pUpdateChainNext;
|
||||||
|
@ -81,7 +81,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
/// (Partially) abstract base class for an operand
|
/// (Partially) abstract base class for an operand
|
||||||
class DynamicKernelArgument : boost::noncopyable
|
class DynamicKernelArgument : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DynamicKernelArgument( const ScCalcConfig& config, const std::string& s, FormulaTreeNodeRef ft );
|
DynamicKernelArgument( const ScCalcConfig& config, const std::string& s, FormulaTreeNodeRef ft );
|
||||||
|
@ -121,7 +121,7 @@ class ScStyleSheetPool;
|
|||||||
class SvStream;
|
class SvStream;
|
||||||
|
|
||||||
/** Contains static methods used anywhere in the filters. */
|
/** Contains static methods used anywhere in the filters. */
|
||||||
class ScfTools : boost::noncopyable
|
class ScfTools : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ class ScPatternAttr;
|
|||||||
/** This class provides methods to create an XclExpString.
|
/** This class provides methods to create an XclExpString.
|
||||||
@descr The string can be created from an edit engine text object or
|
@descr The string can be created from an edit engine text object or
|
||||||
directly from a Calc edit cell. */
|
directly from a Calc edit cell. */
|
||||||
class XclExpStringHelper : boost::noncopyable
|
class XclExpStringHelper : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** Creates a new unformatted string from the passed string.
|
/** Creates a new unformatted string from the passed string.
|
||||||
@ -393,7 +393,7 @@ private:
|
|||||||
/** This class contains static methods to encode a file URL.
|
/** This class contains static methods to encode a file URL.
|
||||||
@descr Excel stores URLs in a format that contains special control characters,
|
@descr Excel stores URLs in a format that contains special control characters,
|
||||||
i.e. for directory separators or volume names. */
|
i.e. for directory separators or volume names. */
|
||||||
class XclExpUrlHelper : boost::noncopyable
|
class XclExpUrlHelper : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** Encodes and returns the URL passed in rAbsUrl to an Excel like URL.
|
/** Encodes and returns the URL passed in rAbsUrl to an Excel like URL.
|
||||||
|
@ -105,7 +105,7 @@ class EditTextObject;
|
|||||||
/** This class provides methods to convert an XclImpString.
|
/** This class provides methods to convert an XclImpString.
|
||||||
@The string can be converted to an edit engine text object or directly
|
@The string can be converted to an edit engine text object or directly
|
||||||
to a Calc edit cell. */
|
to a Calc edit cell. */
|
||||||
class XclImpStringHelper : boost::noncopyable
|
class XclImpStringHelper : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** Returns a new edit engine text object.
|
/** Returns a new edit engine text object.
|
||||||
@ -247,7 +247,7 @@ private:
|
|||||||
/** This class contains static methods to decode an URL stored in an Excel file.
|
/** This class contains static methods to decode an URL stored in an Excel file.
|
||||||
@descr Excel URLs can contain a sheet name, for instance: path\[test.xls]Sheet1
|
@descr Excel URLs can contain a sheet name, for instance: path\[test.xls]Sheet1
|
||||||
This sheet name will be extracted automatically. */
|
This sheet name will be extracted automatically. */
|
||||||
class XclImpUrlHelper : boost::noncopyable
|
class XclImpUrlHelper : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** Decodes an encoded external document URL with optional sheet name.
|
/** Decodes an encoded external document URL with optional sheet name.
|
||||||
@ -292,7 +292,7 @@ class ScTokenArray;
|
|||||||
|
|
||||||
/** This class stores one cached value of a cached value list (used for instance in
|
/** This class stores one cached value of a cached value list (used for instance in
|
||||||
CRN, EXTERNNAME, tArray). */
|
CRN, EXTERNNAME, tArray). */
|
||||||
class XclImpCachedValue : boost::noncopyable
|
class XclImpCachedValue : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** Creates a cached value and reads contents from stream and stores it with its array address. */
|
/** Creates a cached value and reads contents from stream and stores it with its array address. */
|
||||||
|
@ -76,7 +76,7 @@ XclExpStream& operator<<( XclExpStream& rStrm, const XclGuid& rGuid );
|
|||||||
// Excel Tools ================================================================
|
// Excel Tools ================================================================
|
||||||
|
|
||||||
/** This class contains static helper methods for the Excel import and export filters. */
|
/** This class contains static helper methods for the Excel import and export filters. */
|
||||||
class XclTools : boost::noncopyable
|
class XclTools : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// GUID's -----------------------------------------------------------------
|
// GUID's -----------------------------------------------------------------
|
||||||
|
@ -47,7 +47,7 @@ namespace {
|
|||||||
* Cache the token array for the last cell position in each column. We use
|
* Cache the token array for the last cell position in each column. We use
|
||||||
* one cache per sheet.
|
* one cache per sheet.
|
||||||
*/
|
*/
|
||||||
class CachedTokenArray : boost::noncopyable
|
class CachedTokenArray : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ bool IgnoreCaseCompare::operator()( const OUString& rName1, const OUString& rNam
|
|||||||
return rName1.compareToIgnoreAsciiCase(rName2 ) < 0;
|
return rName1.compareToIgnoreAsciiCase(rName2 ) < 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
class WorkbookGlobals : boost::noncopyable
|
class WorkbookGlobals : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit WorkbookGlobals( ExcelFilter& rFilter );
|
explicit WorkbookGlobals( ExcelFilter& rFilter );
|
||||||
|
@ -315,7 +315,7 @@ struct ScMyCell
|
|||||||
~ScMyCell();
|
~ScMyCell();
|
||||||
};
|
};
|
||||||
|
|
||||||
class ScMyNotEmptyCellsIterator : boost::noncopyable
|
class ScMyNotEmptyCellsIterator : private boost::noncopyable
|
||||||
{
|
{
|
||||||
css::uno::Reference<css::sheet::XSpreadsheet> xTable;
|
css::uno::Reference<css::sheet::XSpreadsheet> xTable;
|
||||||
css::uno::Reference<css::table::XCellRange> xCellRange;
|
css::uno::Reference<css::table::XCellRange> xCellRange;
|
||||||
|
@ -820,7 +820,7 @@ typedef std::vector<ScMyImportValidation> ScMyImportValidations;
|
|||||||
class ScMyStylesImportHelper;
|
class ScMyStylesImportHelper;
|
||||||
class ScXMLEditAttributeMap;
|
class ScXMLEditAttributeMap;
|
||||||
|
|
||||||
class ScXMLImport: public SvXMLImport, boost::noncopyable
|
class ScXMLImport: public SvXMLImport, private boost::noncopyable
|
||||||
{
|
{
|
||||||
typedef std::unordered_map< OUString, sal_Int16, OUStringHash > CellTypeMap;
|
typedef std::unordered_map< OUString, sal_Int16, OUStringHash > CellTypeMap;
|
||||||
typedef ::std::map<SCTAB, std::unique_ptr<ScMyNamedExpressions>> SheetNamedExpMap;
|
typedef ::std::map<SCTAB, std::unique_ptr<ScMyNamedExpressions>> SheetNamedExpMap;
|
||||||
|
@ -33,7 +33,7 @@ namespace datastreams {
|
|||||||
class ReaderThread;
|
class ReaderThread;
|
||||||
}
|
}
|
||||||
|
|
||||||
class DataStream : boost::noncopyable
|
class DataStream : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
struct Cell
|
struct Cell
|
||||||
|
@ -52,7 +52,7 @@ struct ESelection;
|
|||||||
|
|
||||||
// ScInputHandler
|
// ScInputHandler
|
||||||
|
|
||||||
class ScInputHandler : boost::noncopyable
|
class ScInputHandler : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
VclPtr<ScInputWindow> pInputWin;
|
VclPtr<ScInputWindow> pInputWin;
|
||||||
|
@ -80,7 +80,7 @@ public:
|
|||||||
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
|
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ScTabView : boost::noncopyable
|
class ScTabView : private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
enum BlockMode { None = 0, Normal = 1, Own = 2 };
|
enum BlockMode { None = 0, Normal = 1, Own = 2 };
|
||||||
|
@ -426,7 +426,7 @@ vector<ScTokenRef> Chart2PositionMap::getDataRowRanges(SCROW nRow) const
|
|||||||
* Designed to be a drop-in replacement for ScChartPositioner, in order to
|
* Designed to be a drop-in replacement for ScChartPositioner, in order to
|
||||||
* handle external references.
|
* handle external references.
|
||||||
*/
|
*/
|
||||||
class Chart2Positioner : boost::noncopyable
|
class Chart2Positioner : private boost::noncopyable
|
||||||
{
|
{
|
||||||
enum GlueType
|
enum GlueType
|
||||||
{
|
{
|
||||||
|
@ -38,7 +38,7 @@ class ResourceFactoryManager;
|
|||||||
/** Manage the set of active resources. Activate and deactivate resources.
|
/** Manage the set of active resources. Activate and deactivate resources.
|
||||||
*/
|
*/
|
||||||
class ConfigurationControllerResourceManager
|
class ConfigurationControllerResourceManager
|
||||||
: ::boost::noncopyable
|
: private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** For every active resource both the resource itself as well as its
|
/** For every active resource both the resource itself as well as its
|
||||||
|
@ -35,7 +35,7 @@ namespace sdext { namespace presenter {
|
|||||||
/** Collection of functions to ease the life of a canvas user.
|
/** Collection of functions to ease the life of a canvas user.
|
||||||
*/
|
*/
|
||||||
class PresenterCanvasHelper
|
class PresenterCanvasHelper
|
||||||
: ::boost::noncopyable
|
: private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PresenterCanvasHelper();
|
PresenterCanvasHelper();
|
||||||
|
@ -135,7 +135,7 @@ private:
|
|||||||
//==== PresenterSlideSorter::MouseOverManager =================================
|
//==== PresenterSlideSorter::MouseOverManager =================================
|
||||||
|
|
||||||
class PresenterSlideSorter::MouseOverManager
|
class PresenterSlideSorter::MouseOverManager
|
||||||
: ::boost::noncopyable
|
: private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MouseOverManager (
|
MouseOverManager (
|
||||||
|
@ -31,7 +31,7 @@ namespace sdext { namespace presenter {
|
|||||||
/** Functions for painting UI elements.
|
/** Functions for painting UI elements.
|
||||||
*/
|
*/
|
||||||
class PresenterUIPainter
|
class PresenterUIPainter
|
||||||
: ::boost::noncopyable
|
: private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PresenterUIPainter();
|
PresenterUIPainter();
|
||||||
|
@ -166,7 +166,7 @@ bool IsLockingUsed()
|
|||||||
|
|
||||||
} // anonymous namespace
|
} // anonymous namespace
|
||||||
|
|
||||||
class SfxMedium_Impl : boost::noncopyable
|
class SfxMedium_Impl : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
StreamMode m_nStorOpenMode;
|
StreamMode m_nStorOpenMode;
|
||||||
|
@ -42,7 +42,7 @@ namespace slideshow
|
|||||||
objects report any pending update, commitUpdates() does
|
objects report any pending update, commitUpdates() does
|
||||||
nothing.
|
nothing.
|
||||||
*/
|
*/
|
||||||
class ScreenUpdater : boost::noncopyable
|
class ScreenUpdater : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit ScreenUpdater( UnoViewContainer const& rViewContainer );
|
explicit ScreenUpdater( UnoViewContainer const& rViewContainer );
|
||||||
|
@ -51,7 +51,7 @@ namespace accessibility
|
|||||||
> AccessibleTableShape_Base;
|
> AccessibleTableShape_Base;
|
||||||
/** @descr
|
/** @descr
|
||||||
*/
|
*/
|
||||||
class AccessibleTableShape : boost::noncopyable, public AccessibleTableShape_Base, public css::accessibility::XAccessibleTableSelection
|
class AccessibleTableShape : private boost::noncopyable, public AccessibleTableShape_Base, public css::accessibility::XAccessibleTableSelection
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AccessibleTableShape( const AccessibleShapeInfo& rShapeInfo, const AccessibleShapeTreeInfo& rShapeTreeInfo );
|
AccessibleTableShape( const AccessibleShapeInfo& rShapeInfo, const AccessibleShapeTreeInfo& rShapeTreeInfo );
|
||||||
@ -159,7 +159,7 @@ typedef ::cppu::WeakImplHelper<
|
|||||||
css::accessibility::XAccessibleTableSelection >
|
css::accessibility::XAccessibleTableSelection >
|
||||||
AccessibleTableHeaderShape_BASE;
|
AccessibleTableHeaderShape_BASE;
|
||||||
|
|
||||||
class AccessibleTableHeaderShape : boost::noncopyable,
|
class AccessibleTableHeaderShape : private boost::noncopyable,
|
||||||
public MutexOwner,
|
public MutexOwner,
|
||||||
public AccessibleTableHeaderShape_BASE
|
public AccessibleTableHeaderShape_BASE
|
||||||
{
|
{
|
||||||
|
@ -48,7 +48,7 @@ class AccessibleShapeTreeInfo;
|
|||||||
|
|
||||||
typedef ::cppu::ImplInheritanceHelper< AccessibleContextBase, css::accessibility::XAccessibleExtendedComponent > AccessibleCellBase;
|
typedef ::cppu::ImplInheritanceHelper< AccessibleContextBase, css::accessibility::XAccessibleExtendedComponent > AccessibleCellBase;
|
||||||
|
|
||||||
class AccessibleCell : boost::noncopyable, public AccessibleCellBase, public AccessibleComponentBase, public IAccessibleViewForwarderListener
|
class AccessibleCell : private boost::noncopyable, public AccessibleCellBase, public AccessibleComponentBase, public IAccessibleViewForwarderListener
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AccessibleCell( const css::uno::Reference< css::accessibility::XAccessible>& rxParent, const sdr::table::CellRef& rCell, sal_Int32 nIndex, const AccessibleShapeTreeInfo& rShapeTreeInfo);
|
AccessibleCell( const css::uno::Reference< css::accessibility::XAccessible>& rxParent, const sdr::table::CellRef& rCell, sal_Int32 nIndex, const AccessibleShapeTreeInfo& rShapeTreeInfo);
|
||||||
|
@ -72,7 +72,7 @@ namespace sw
|
|||||||
const SfxPoolItem* m_pNew;
|
const SfxPoolItem* m_pNew;
|
||||||
};
|
};
|
||||||
/// refactoring out the some of the more sane SwClient functionality
|
/// refactoring out the some of the more sane SwClient functionality
|
||||||
class SW_DLLPUBLIC WriterListener : ::boost::noncopyable
|
class SW_DLLPUBLIC WriterListener : private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
friend class ::SwModify;
|
friend class ::SwModify;
|
||||||
friend class ::sw::ClientIteratorBase;
|
friend class ::sw::ClientIteratorBase;
|
||||||
|
@ -130,7 +130,7 @@ namespace
|
|||||||
|
|
||||||
See also: BeginSwBlock and EndSwBlock.
|
See also: BeginSwBlock and EndSwBlock.
|
||||||
*/
|
*/
|
||||||
class WriterSpecificAutoFormatBlock : ::boost::noncopyable
|
class WriterSpecificAutoFormatBlock : private ::boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit WriterSpecificAutoFormatBlock(SvStream &rStream) : _rStream(rStream)
|
explicit WriterSpecificAutoFormatBlock(SvStream &rStream) : _rStream(rStream)
|
||||||
|
@ -439,7 +439,7 @@ OUString BasicProjImportHelper::getProjectName()
|
|||||||
return sProjName;
|
return sProjName;
|
||||||
}
|
}
|
||||||
|
|
||||||
class Sttb : TBBase, private boost::noncopyable
|
class Sttb : public TBBase, private boost::noncopyable
|
||||||
{
|
{
|
||||||
struct SBBItem
|
struct SBBItem
|
||||||
{
|
{
|
||||||
|
@ -42,7 +42,7 @@ namespace packages = com::sun::star::packages;
|
|||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
|
||||||
class PositionHolder : boost::noncopyable
|
class PositionHolder : private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit PositionHolder(const Reference<XSeekable> &rxSeekable);
|
explicit PositionHolder(const Reference<XSeekable> &rxSeekable);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user