loplugin:unusedfields make some fields private
this is one of the secondary analyses this plugin performs Change-Id: Iaa4424c2396470c6f1df85b0290fbffdda35fa08 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143177 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
@@ -110,7 +110,22 @@ public:
|
|||||||
virtual css::uno::Any SAL_CALL getMinimumValue( ) override;
|
virtual css::uno::Any SAL_CALL getMinimumValue( ) override;
|
||||||
|
|
||||||
virtual css::uno::Any SAL_CALL getMinimumIncrement( ) override;
|
virtual css::uno::Any SAL_CALL getMinimumIncrement( ) override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
virtual ~VCLXAccessibleBox() override = default;
|
||||||
|
|
||||||
|
/** Returns true when the object is valid.
|
||||||
|
*/
|
||||||
|
virtual bool IsValid() const = 0;
|
||||||
|
|
||||||
|
virtual void ProcessWindowChildEvent (const VclWindowEvent& rVclWindowEvent) override;
|
||||||
|
virtual void ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent) override;
|
||||||
|
|
||||||
|
virtual void FillAccessibleStateSet( sal_Int64& rStateSet ) override;
|
||||||
|
|
||||||
|
sal_Int64 implGetAccessibleChildCount();
|
||||||
|
|
||||||
|
private:
|
||||||
/** Specifies whether the box is a combo box or a list box. List boxes
|
/** Specifies whether the box is a combo box or a list box. List boxes
|
||||||
have multi selection.
|
have multi selection.
|
||||||
*/
|
*/
|
||||||
@@ -140,19 +155,6 @@ protected:
|
|||||||
same life time.
|
same life time.
|
||||||
*/
|
*/
|
||||||
bool m_bHasListChild;
|
bool m_bHasListChild;
|
||||||
|
|
||||||
virtual ~VCLXAccessibleBox() override = default;
|
|
||||||
|
|
||||||
/** Returns true when the object is valid.
|
|
||||||
*/
|
|
||||||
virtual bool IsValid() const = 0;
|
|
||||||
|
|
||||||
virtual void ProcessWindowChildEvent (const VclWindowEvent& rVclWindowEvent) override;
|
|
||||||
virtual void ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent) override;
|
|
||||||
|
|
||||||
virtual void FillAccessibleStateSet( sal_Int64& rStateSet ) override;
|
|
||||||
|
|
||||||
sal_Int64 implGetAccessibleChildCount();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -45,7 +45,7 @@ protected:
|
|||||||
virtual css::uno::Any convertInnerToOuterValue( const css::uno::Any& rInnerValue ) const override;
|
virtual css::uno::Any convertInnerToOuterValue( const css::uno::Any& rInnerValue ) const override;
|
||||||
virtual css::uno::Any convertOuterToInnerValue( const css::uno::Any& rOuterValue ) const override;
|
virtual css::uno::Any convertOuterToInnerValue( const css::uno::Any& rOuterValue ) const override;
|
||||||
|
|
||||||
protected:
|
private:
|
||||||
ReferenceSizePropertyProvider* m_pRefSizePropProvider;
|
ReferenceSizePropertyProvider* m_pRefSizePropProvider;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -43,7 +43,7 @@ public:
|
|||||||
|
|
||||||
void setDimensionAndAxisIndex( sal_Int32 nDimensionIndex, sal_Int32 nAxisIndex );
|
void setDimensionAndAxisIndex( sal_Int32 nDimensionIndex, sal_Int32 nAxisIndex );
|
||||||
|
|
||||||
protected:
|
private:
|
||||||
sal_Int32 m_nDimensionIndex;
|
sal_Int32 m_nDimensionIndex;
|
||||||
sal_Int32 m_nAxisIndex;
|
sal_Int32 m_nAxisIndex;
|
||||||
std::shared_ptr< Chart2ModelContact > m_spChart2ModelContact;
|
std::shared_ptr< Chart2ModelContact > m_spChart2ModelContact;
|
||||||
|
@@ -38,7 +38,6 @@ struct InsertAxisOrGridDialogData
|
|||||||
\************************************************************************/
|
\************************************************************************/
|
||||||
class SchAxisDlg : public weld::GenericDialogController
|
class SchAxisDlg : public weld::GenericDialogController
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
std::unique_ptr<weld::CheckButton> m_xCbPrimaryX;
|
std::unique_ptr<weld::CheckButton> m_xCbPrimaryX;
|
||||||
std::unique_ptr<weld::CheckButton> m_xCbPrimaryY;
|
std::unique_ptr<weld::CheckButton> m_xCbPrimaryY;
|
||||||
std::unique_ptr<weld::CheckButton> m_xCbPrimaryZ;
|
std::unique_ptr<weld::CheckButton> m_xCbPrimaryZ;
|
||||||
|
@@ -118,10 +118,8 @@ protected:
|
|||||||
|
|
||||||
void fireModifyEvent();
|
void fireModifyEvent();
|
||||||
|
|
||||||
protected:
|
|
||||||
rtl::Reference<ModifyEventForwarder> m_xModifyEventForwarder;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
rtl::Reference<ModifyEventForwarder> m_xModifyEventForwarder;
|
||||||
sal_Int32 m_nDimensionCount;
|
sal_Int32 m_nDimensionCount;
|
||||||
typedef std::vector< std::vector< rtl::Reference< ::chart::Axis > > > tAxisVecVecType;
|
typedef std::vector< std::vector< rtl::Reference< ::chart::Axis > > > tAxisVecVecType;
|
||||||
tAxisVecVecType m_aAllAxis; //outer sequence is the dimension; inner sequence is the axis index that indicates main or secondary axis
|
tAxisVecVecType m_aAllAxis; //outer sequence is the dimension; inner sequence is the axis index that indicates main or secondary axis
|
||||||
|
@@ -103,7 +103,7 @@ protected: //methods
|
|||||||
const WrappedProperty* getWrappedProperty( const OUString& rOuterName );
|
const WrappedProperty* getWrappedProperty( const OUString& rOuterName );
|
||||||
const WrappedProperty* getWrappedProperty( sal_Int32 nHandle );
|
const WrappedProperty* getWrappedProperty( sal_Int32 nHandle );
|
||||||
|
|
||||||
protected: //member
|
private:
|
||||||
css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo;//outer PropertySetInfo
|
css::uno::Reference< css::beans::XPropertySetInfo > m_xInfo;//outer PropertySetInfo
|
||||||
|
|
||||||
std::unique_ptr<::cppu::OPropertyArrayHelper> m_pPropertyArrayHelper;//holds all possible outer properties
|
std::unique_ptr<::cppu::OPropertyArrayHelper> m_pPropertyArrayHelper;//holds all possible outer properties
|
||||||
|
@@ -26,10 +26,10 @@ public:
|
|||||||
virtual short run() override;
|
virtual short run() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
css::uno::Reference<css::frame::XModel> m_xModel;
|
|
||||||
void Apply();
|
void Apply();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
css::uno::Reference<css::frame::XModel> m_xModel;
|
||||||
std::unique_ptr<weld::Entry> m_xEdittext;
|
std::unique_ptr<weld::Entry> m_xEdittext;
|
||||||
std::unique_ptr<weld::RadioButton> m_xECC[4];
|
std::unique_ptr<weld::RadioButton> m_xECC[4];
|
||||||
std::unique_ptr<weld::SpinButton> m_xSpinBorder;
|
std::unique_ptr<weld::SpinButton> m_xSpinBorder;
|
||||||
|
@@ -76,7 +76,6 @@ public:
|
|||||||
|
|
||||||
class SvxScriptOrgDialog : public SfxDialogController
|
class SvxScriptOrgDialog : public SfxDialogController
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
weld::Window* m_pParent;
|
weld::Window* m_pParent;
|
||||||
OUString m_sLanguage;
|
OUString m_sLanguage;
|
||||||
static Selection_hash m_lastSelection;
|
static Selection_hash m_lastSelection;
|
||||||
|
@@ -61,7 +61,6 @@ namespace dbaccess
|
|||||||
,public ODBTableDecorator_PROP
|
,public ODBTableDecorator_PROP
|
||||||
{
|
{
|
||||||
void fillPrivileges() const;
|
void fillPrivileges() const;
|
||||||
protected:
|
|
||||||
css::uno::Reference< css::container::XContainerListener > m_xColumnMediator;
|
css::uno::Reference< css::container::XContainerListener > m_xColumnMediator;
|
||||||
css::uno::Reference< css::sdbcx::XColumnsSupplier > m_xTable;
|
css::uno::Reference< css::sdbcx::XColumnsSupplier > m_xTable;
|
||||||
css::uno::Reference< css::container::XNameAccess > m_xColumnDefinitions;
|
css::uno::Reference< css::container::XNameAccess > m_xColumnDefinitions;
|
||||||
@@ -75,6 +74,7 @@ namespace dbaccess
|
|||||||
// note: this thing uses the ref-count of "this", see OCollection::acquire()!
|
// note: this thing uses the ref-count of "this", see OCollection::acquire()!
|
||||||
std::unique_ptr<::connectivity::sdbcx::OCollection> m_pColumns;
|
std::unique_ptr<::connectivity::sdbcx::OCollection> m_pColumns;
|
||||||
|
|
||||||
|
protected:
|
||||||
// IColumnFactory
|
// IColumnFactory
|
||||||
virtual rtl::Reference<OColumn> createColumn(const OUString& _rName) const override;
|
virtual rtl::Reference<OColumn> createColumn(const OUString& _rName) const override;
|
||||||
virtual css::uno::Reference< css::beans::XPropertySet > createColumnDescriptor() override;
|
virtual css::uno::Reference< css::beans::XPropertySet > createColumnDescriptor() override;
|
||||||
|
@@ -128,7 +128,6 @@ namespace dbaccess
|
|||||||
{
|
{
|
||||||
OContainerMediator* m_pMediator;
|
OContainerMediator* m_pMediator;
|
||||||
|
|
||||||
protected:
|
|
||||||
// comes from the driver can be null
|
// comes from the driver can be null
|
||||||
css::uno::Reference< css::container::XNameAccess > m_xDrvColumns;
|
css::uno::Reference< css::container::XNameAccess > m_xDrvColumns;
|
||||||
css::uno::WeakReference< css::uno::XInterface > m_xParent;
|
css::uno::WeakReference< css::uno::XInterface > m_xParent;
|
||||||
@@ -139,6 +138,7 @@ namespace dbaccess
|
|||||||
bool m_bAddColumn : 1;
|
bool m_bAddColumn : 1;
|
||||||
bool m_bDropColumn : 1;
|
bool m_bDropColumn : 1;
|
||||||
|
|
||||||
|
protected:
|
||||||
virtual void impl_refresh() override;
|
virtual void impl_refresh() override;
|
||||||
virtual connectivity::sdbcx::ObjectType createObject(const OUString& _rName) override;
|
virtual connectivity::sdbcx::ObjectType createObject(const OUString& _rName) override;
|
||||||
virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() override;
|
virtual css::uno::Reference< css::beans::XPropertySet > createDescriptor() override;
|
||||||
|
@@ -84,7 +84,6 @@ private:
|
|||||||
BasicDLL m_aBasicDLL;
|
BasicDLL m_aBasicDLL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
protected:
|
|
||||||
::osl::Mutex m_aMutex;
|
::osl::Mutex m_aMutex;
|
||||||
css::uno::Reference< css::uno::XComponentContext >
|
css::uno::Reference< css::uno::XComponentContext >
|
||||||
m_aContext;
|
m_aContext;
|
||||||
|
@@ -44,7 +44,6 @@ namespace dbaccess
|
|||||||
private:
|
private:
|
||||||
::rtl::Reference< OContainerMediator > m_pColumnMediator;
|
::rtl::Reference< OContainerMediator > m_pColumnMediator;
|
||||||
|
|
||||||
protected:
|
|
||||||
css::uno::Reference< css::container::XNameAccess > m_xColumnDefinitions;
|
css::uno::Reference< css::container::XNameAccess > m_xColumnDefinitions;
|
||||||
css::uno::Reference< css::container::XNameAccess > m_xDriverColumns;
|
css::uno::Reference< css::container::XNameAccess > m_xDriverColumns;
|
||||||
|
|
||||||
@@ -52,6 +51,7 @@ namespace dbaccess
|
|||||||
sal_Int32 m_nPrivileges;
|
sal_Int32 m_nPrivileges;
|
||||||
// </properties>
|
// </properties>
|
||||||
|
|
||||||
|
protected:
|
||||||
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( sal_Int32 _nId) const override;
|
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( sal_Int32 _nId) const override;
|
||||||
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
|
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
|
||||||
|
|
||||||
|
@@ -64,7 +64,6 @@ typedef std::deque< OTableInfo > TableInfoList;
|
|||||||
// IndexDialog
|
// IndexDialog
|
||||||
class ODbaseIndexDialog : public weld::GenericDialogController
|
class ODbaseIndexDialog : public weld::GenericDialogController
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
OUString m_aDSN;
|
OUString m_aDSN;
|
||||||
TableInfoList m_aTableInfoList;
|
TableInfoList m_aTableInfoList;
|
||||||
TableIndexList m_aFreeIndexList;
|
TableIndexList m_aFreeIndexList;
|
||||||
@@ -88,6 +87,7 @@ protected:
|
|||||||
DECL_LINK( OKClickHdl, weld::Button&, void );
|
DECL_LINK( OKClickHdl, weld::Button&, void );
|
||||||
DECL_LINK( OnListEntrySelected, weld::TreeView&, void );
|
DECL_LINK( OnListEntrySelected, weld::TreeView&, void );
|
||||||
|
|
||||||
|
protected:
|
||||||
void Init();
|
void Init();
|
||||||
void SetCtrls();
|
void SetCtrls();
|
||||||
|
|
||||||
|
@@ -34,7 +34,7 @@ namespace dbaui
|
|||||||
mutable ::osl::Mutex m_aMutex;
|
mutable ::osl::Mutex m_aMutex;
|
||||||
|
|
||||||
void listen();
|
void listen();
|
||||||
protected:
|
|
||||||
// the columns of the table
|
// the columns of the table
|
||||||
css::uno::Reference< css::beans::XPropertySet > m_xTable; // can either be a table or a query
|
css::uno::Reference< css::beans::XPropertySet > m_xTable; // can either be a table or a query
|
||||||
css::uno::Reference< css::container::XIndexAccess> m_xKeys;
|
css::uno::Reference< css::container::XIndexAccess> m_xKeys;
|
||||||
|
@@ -29,7 +29,6 @@ namespace dbaui
|
|||||||
// OIndexCollection
|
// OIndexCollection
|
||||||
class OIndexCollection
|
class OIndexCollection
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
css::uno::Reference< css::container::XNameAccess >
|
css::uno::Reference< css::container::XNameAccess >
|
||||||
m_xIndexes;
|
m_xIndexes;
|
||||||
|
|
||||||
|
@@ -90,7 +90,7 @@ namespace emfplushelper
|
|||||||
BrushTypeLinearGradient = 0x00000004
|
BrushTypeLinearGradient = 0x00000004
|
||||||
};
|
};
|
||||||
|
|
||||||
struct EMFPPath;
|
class EMFPPath;
|
||||||
|
|
||||||
struct EMFPBrush : public EMFPObject
|
struct EMFPBrush : public EMFPObject
|
||||||
{
|
{
|
||||||
|
@@ -23,13 +23,14 @@
|
|||||||
|
|
||||||
namespace emfplushelper
|
namespace emfplushelper
|
||||||
{
|
{
|
||||||
struct EMFPPath : public EMFPObject
|
class EMFPPath : public EMFPObject
|
||||||
{
|
{
|
||||||
::basegfx::B2DPolyPolygon aPolygon;
|
::basegfx::B2DPolyPolygon aPolygon;
|
||||||
sal_uInt32 nPoints;
|
sal_uInt32 nPoints;
|
||||||
std::unique_ptr<float[]> pPoints;
|
std::unique_ptr<float[]> pPoints;
|
||||||
std::unique_ptr<sal_uInt8[]> pPointTypes;
|
std::unique_ptr<sal_uInt8[]> pPointTypes;
|
||||||
|
|
||||||
|
public:
|
||||||
EMFPPath(sal_uInt32 _nPoints, bool bLines = false);
|
EMFPPath(sal_uInt32 _nPoints, bool bLines = false);
|
||||||
|
|
||||||
virtual ~EMFPPath() override;
|
virtual ~EMFPPath() override;
|
||||||
|
@@ -88,7 +88,6 @@ namespace dbp
|
|||||||
|
|
||||||
class ODBFieldPage : public OMaybeListSelectionPage
|
class ODBFieldPage : public OMaybeListSelectionPage
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
std::unique_ptr<weld::Label> m_xDescription;
|
std::unique_ptr<weld::Label> m_xDescription;
|
||||||
std::unique_ptr<weld::RadioButton> m_xStoreYes;
|
std::unique_ptr<weld::RadioButton> m_xStoreYes;
|
||||||
std::unique_ptr<weld::RadioButton> m_xStoreNo;
|
std::unique_ptr<weld::RadioButton> m_xStoreNo;
|
||||||
|
@@ -76,10 +76,7 @@ namespace pcr
|
|||||||
typedef std::vector< css::uno::Reference< css::uno::XInterface > >
|
typedef std::vector< css::uno::Reference< css::uno::XInterface > >
|
||||||
InterfaceArray;
|
InterfaceArray;
|
||||||
|
|
||||||
protected:
|
|
||||||
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
||||||
|
|
||||||
private:
|
|
||||||
css::uno::Reference< css::frame::XFrame > m_xFrame;
|
css::uno::Reference< css::frame::XFrame > m_xFrame;
|
||||||
css::uno::Reference< css::awt::XWindow > m_xView;
|
css::uno::Reference< css::awt::XWindow > m_xView;
|
||||||
|
|
||||||
|
@@ -43,7 +43,6 @@ namespace frm
|
|||||||
static css::uno::Reference< css::util::XNumberFormatsSupplier >
|
static css::uno::Reference< css::util::XNumberFormatsSupplier >
|
||||||
s_xStandardFormats;
|
s_xStandardFormats;
|
||||||
|
|
||||||
protected:
|
|
||||||
sal_Int32 m_nFormatEnumPropertyHandle;
|
sal_Int32 m_nFormatEnumPropertyHandle;
|
||||||
const sal_Int16 m_nTableId;
|
const sal_Int16 m_nTableId;
|
||||||
css::uno::Reference< css::beans::XFastPropertySet >
|
css::uno::Reference< css::beans::XFastPropertySet >
|
||||||
|
@@ -88,7 +88,9 @@ public:
|
|||||||
void makeIndexKeys(const css::lang::Locale &rLocale, std::u16string_view algorithm);
|
void makeIndexKeys(const css::lang::Locale &rLocale, std::u16string_view algorithm);
|
||||||
sal_Int16 getIndexWeight(const OUString& rIndexEntry);
|
sal_Int16 getIndexWeight(const OUString& rIndexEntry);
|
||||||
OUString getIndexDescription(const OUString& rIndexEntry);
|
OUString getIndexDescription(const OUString& rIndexEntry);
|
||||||
|
sal_Int16 compare(sal_Unicode c1, sal_Unicode c2);
|
||||||
|
|
||||||
|
private:
|
||||||
IndexTable tables[MAX_TABLES];
|
IndexTable tables[MAX_TABLES];
|
||||||
sal_Int16 table_count;
|
sal_Int16 table_count;
|
||||||
IndexKey keys[MAX_KEYS];
|
IndexKey keys[MAX_KEYS];
|
||||||
@@ -97,7 +99,6 @@ public:
|
|||||||
sal_Int16 mkey_count;
|
sal_Int16 mkey_count;
|
||||||
OUString skipping_chars;
|
OUString skipping_chars;
|
||||||
rtl::Reference<CollatorImpl> collator;
|
rtl::Reference<CollatorImpl> collator;
|
||||||
sal_Int16 compare(sal_Unicode c1, sal_Unicode c2);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -61,12 +61,12 @@ namespace comphelper
|
|||||||
public css::beans::XPropertyState,
|
public css::beans::XPropertyState,
|
||||||
public css::beans::XMultiPropertySet
|
public css::beans::XMultiPropertySet
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
SolarMutex* const mpMutex;
|
SolarMutex* const mpMutex;
|
||||||
sal_uInt8 mnLastId;
|
sal_uInt8 mnLastId;
|
||||||
std::map< sal_uInt8, comphelper::SlaveData* > maSlaveMap;
|
std::map< sal_uInt8, comphelper::SlaveData* > maSlaveMap;
|
||||||
rtl::Reference< MasterPropertySetInfo > mxInfo;
|
rtl::Reference< MasterPropertySetInfo > mxInfo;
|
||||||
|
|
||||||
|
protected:
|
||||||
/// @throws css::beans::UnknownPropertyException
|
/// @throws css::beans::UnknownPropertyException
|
||||||
/// @throws css::beans::PropertyVetoException
|
/// @throws css::beans::PropertyVetoException
|
||||||
/// @throws css::lang::IllegalArgumentException
|
/// @throws css::lang::IllegalArgumentException
|
||||||
|
@@ -71,8 +71,6 @@ namespace comphelper
|
|||||||
m_xParentAccessible;
|
m_xParentAccessible;
|
||||||
css::uno::WeakReference< css::accessibility::XAccessibleContext >
|
css::uno::WeakReference< css::accessibility::XAccessibleContext >
|
||||||
m_aContext;
|
m_aContext;
|
||||||
|
|
||||||
protected:
|
|
||||||
css::uno::Reference< css::accessibility::XAccessible >
|
css::uno::Reference< css::accessibility::XAccessible >
|
||||||
m_xInnerAccessible;
|
m_xInnerAccessible;
|
||||||
|
|
||||||
|
@@ -45,7 +45,6 @@ namespace comphelper
|
|||||||
class COMPHELPER_DLLPUBLIC OContainerListener
|
class COMPHELPER_DLLPUBLIC OContainerListener
|
||||||
{
|
{
|
||||||
friend class OContainerListenerAdapter;
|
friend class OContainerListenerAdapter;
|
||||||
protected:
|
|
||||||
rtl::Reference<OContainerListenerAdapter> m_xAdapter;
|
rtl::Reference<OContainerListenerAdapter> m_xAdapter;
|
||||||
::osl::Mutex& m_rMutex;
|
::osl::Mutex& m_rMutex;
|
||||||
|
|
||||||
|
@@ -91,7 +91,6 @@ namespace comphelper
|
|||||||
*/
|
*/
|
||||||
class COMPHELPER_DLLPUBLIC EventLogger
|
class COMPHELPER_DLLPUBLIC EventLogger
|
||||||
{
|
{
|
||||||
protected:
|
|
||||||
std::shared_ptr< EventLogger_Impl > m_pImpl;
|
std::shared_ptr< EventLogger_Impl > m_pImpl;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@@ -38,6 +38,7 @@ namespace comphelper
|
|||||||
|
|
||||||
struct UStringMixLess
|
struct UStringMixLess
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
bool m_bCaseSensitive;
|
bool m_bCaseSensitive;
|
||||||
public:
|
public:
|
||||||
UStringMixLess(bool bCaseSensitive = true):m_bCaseSensitive(bCaseSensitive){}
|
UStringMixLess(bool bCaseSensitive = true):m_bCaseSensitive(bCaseSensitive){}
|
||||||
|
@@ -478,18 +478,20 @@ struct MSFILTER_DLLPUBLIC EscherConnectorListEntry
|
|||||||
|
|
||||||
struct MSFILTER_DLLPUBLIC EscherExContainer
|
struct MSFILTER_DLLPUBLIC EscherExContainer
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
sal_uInt32 nContPos;
|
sal_uInt32 nContPos;
|
||||||
SvStream& rStrm;
|
SvStream& rStrm;
|
||||||
|
public:
|
||||||
EscherExContainer( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0 );
|
EscherExContainer( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0 );
|
||||||
~EscherExContainer();
|
~EscherExContainer();
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MSFILTER_DLLPUBLIC EscherExAtom
|
struct MSFILTER_DLLPUBLIC EscherExAtom
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
sal_uInt32 nContPos;
|
sal_uInt32 nContPos;
|
||||||
SvStream& rStrm;
|
SvStream& rStrm;
|
||||||
|
public:
|
||||||
EscherExAtom( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0, const sal_uInt8 nVersion = 0 );
|
EscherExAtom( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0, const sal_uInt8 nVersion = 0 );
|
||||||
~EscherExAtom();
|
~EscherExAtom();
|
||||||
};
|
};
|
||||||
|
@@ -1000,8 +1000,9 @@ struct PPTRuler final : public salhelper::SimpleReferenceObject
|
|||||||
|
|
||||||
struct PPTTextRulerInterpreter
|
struct PPTTextRulerInterpreter
|
||||||
{
|
{
|
||||||
|
private:
|
||||||
rtl::Reference<PPTRuler> mxImplRuler;
|
rtl::Reference<PPTRuler> mxImplRuler;
|
||||||
|
public:
|
||||||
PPTTextRulerInterpreter();
|
PPTTextRulerInterpreter();
|
||||||
PPTTextRulerInterpreter( PPTTextRulerInterpreter const & rRuler );
|
PPTTextRulerInterpreter( PPTTextRulerInterpreter const & rRuler );
|
||||||
PPTTextRulerInterpreter(
|
PPTTextRulerInterpreter(
|
||||||
@@ -1156,10 +1157,10 @@ class MSFILTER_DLLPUBLIC PPTParagraphObj
|
|||||||
PPTParagraphObj(PPTParagraphObj const&) = delete;
|
PPTParagraphObj(PPTParagraphObj const&) = delete;
|
||||||
void operator=(PPTParagraphObj const&) = delete;
|
void operator=(PPTParagraphObj const&) = delete;
|
||||||
|
|
||||||
public:
|
|
||||||
sal_uInt32 mnCurrentObject;
|
sal_uInt32 mnCurrentObject;
|
||||||
::std::vector<std::unique_ptr<PPTPortionObj>> m_PortionList;
|
::std::vector<std::unique_ptr<PPTPortionObj>> m_PortionList;
|
||||||
|
|
||||||
|
public:
|
||||||
void UpdateBulletRelSize( sal_uInt32& nBulletRelSize ) const;
|
void UpdateBulletRelSize( sal_uInt32& nBulletRelSize ) const;
|
||||||
bool GetAttrib( sal_uInt32 nAttr, sal_uInt32& nVal, TSS_Type nInstanceInSheet );
|
bool GetAttrib( sal_uInt32 nAttr, sal_uInt32& nVal, TSS_Type nInstanceInSheet );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user