summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-30 11:08:36 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-30 19:50:30 +0200
commit979d58c9a96884e36d1585df0c04c89b1f53fa99 (patch)
treebce40aad53ac5123a2864da59b8d889b8a51e577 /include
parent3c1fc723ff622d8a541fa26a3397ca4258332e4a (diff)
loplugin:unusedfields in toolkit..xmloff
Change-Id: I4964ff97e0a1735dc08c6ad204cae0b08e9ffc2c Reviewed-on: https://gerrit.libreoffice.org/39406 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/toolkit/awt/vclxdevice.hxx8
-rw-r--r--include/unotools/textsearch.hxx6
-rw-r--r--include/vcl/outdevmap.hxx4
-rw-r--r--include/vcl/ppdparser.hxx2
-rw-r--r--include/xmloff/xmlnumi.hxx1
5 files changed, 0 insertions, 21 deletions
diff --git a/include/toolkit/awt/vclxdevice.hxx b/include/toolkit/awt/vclxdevice.hxx
index 94f4715460ad..8d900612abb3 100644
--- a/include/toolkit/awt/vclxdevice.hxx
+++ b/include/toolkit/awt/vclxdevice.hxx
@@ -33,9 +33,6 @@
class OutputDevice;
class VirtualDevice;
-// For using nDummy, no incompatible update, add a sal_Bool bCreatedWithToolkitMember later...
-#define FLAGS_CREATEDWITHTOOLKIT 0x00000001
-
/// An UNO wrapper for the VCL OutputDevice
class TOOLKIT_DLLPUBLIC VCLXDevice :
public css::awt::XDevice,
@@ -51,17 +48,12 @@ private:
VclPtr<OutputDevice> mpOutputDevice;
public:
- sal_uInt32 nFlags;
-
-public:
VCLXDevice();
virtual ~VCLXDevice() override;
void SetOutputDevice( const VclPtr<OutputDevice> &pOutDev ) { mpOutputDevice = pOutDev; }
const VclPtr<OutputDevice>& GetOutputDevice() const { return mpOutputDevice; }
- void SetCreatedWithToolkit( bool bCreatedWithToolkit );
-
// css::uno::XInterface
css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
void SAL_CALL acquire() throw() override { OWeakObject::acquire(); }
diff --git a/include/unotools/textsearch.hxx b/include/unotools/textsearch.hxx
index 71048c226f0d..46cc358584df 100644
--- a/include/unotools/textsearch.hxx
+++ b/include/unotools/textsearch.hxx
@@ -104,12 +104,6 @@ private:
bool m_bCaseSense : 1;
bool m_bWildMatchSel : 1; // wildcard pattern must match entire selection
- // values for the "weight Levenshtein-Distance"
- bool bLEV_Relaxed : 1;
- int nLEV_OtherX;
- int nLEV_ShorterY;
- int nLEV_LongerZ;
-
// asian flags - used for the transliteration
TransliterationFlags nTransliterationFlags;
diff --git a/include/vcl/outdevmap.hxx b/include/vcl/outdevmap.hxx
index 05f43c065c1e..c6494f0650a0 100644
--- a/include/vcl/outdevmap.hxx
+++ b/include/vcl/outdevmap.hxx
@@ -28,10 +28,6 @@ struct ImplMapRes
long mnMapScNumY; // Scaling factor - numerator in Y direction
long mnMapScDenomX; // Scaling factor - denominator in X direction
long mnMapScDenomY; // Scaling factor - denominator in Y direction
- double mfOffsetX;
- double mfOffsetY;
- double mfScaleX;
- double mfScaleY;
};
struct ImplThresholdRes
diff --git a/include/vcl/ppdparser.hxx b/include/vcl/ppdparser.hxx
index b693dc41ff94..9212516fc8e5 100644
--- a/include/vcl/ppdparser.hxx
+++ b/include/vcl/ppdparser.hxx
@@ -166,8 +166,6 @@ private:
// resolutions
const PPDValue* m_pDefaultResolution;
const PPDKey* m_pResolutions;
- // duplex commands
- const PPDKey* m_pDuplexTypes;
// fonts
const PPDKey* m_pFontList;
diff --git a/include/xmloff/xmlnumi.hxx b/include/xmloff/xmlnumi.hxx
index b1a068707c8c..b4a130c45636 100644
--- a/include/xmloff/xmlnumi.hxx
+++ b/include/xmloff/xmlnumi.hxx
@@ -46,7 +46,6 @@ class XMLOFF_DLLPUBLIC SvxXMLListStyleContext
std::unique_ptr<SvxXMLListStyle_Impl> pLevelStyles;
- sal_Int32 nLevels;
bool bConsecutive : 1;
bool bOutline : 1;