summaryrefslogtreecommitdiff
path: root/filter/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-30 23:17:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-31 09:04:16 +0200
commit0a7000e032a43e56e75c8e8066117683866fdc36 (patch)
tree83fbf349cdd238cc7bc08020a593e5649861aa44 /filter/inc
parentb0772418bc2992d213e08ca181e147ed707999e1 (diff)
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: Id2034a3ec40e1cfcd21f60e19f4faa99bb1f6164
Diffstat (limited to 'filter/inc')
-rw-r--r--filter/inc/filter/msfilter/mstoolbar.hxx1
-rw-r--r--filter/inc/filter/msfilter/svxmsbas.hxx8
2 files changed, 2 insertions, 7 deletions
diff --git a/filter/inc/filter/msfilter/mstoolbar.hxx b/filter/inc/filter/msfilter/mstoolbar.hxx
index 4137605c2d54..a1ae5075fdf3 100644
--- a/filter/inc/filter/msfilter/mstoolbar.hxx
+++ b/filter/inc/filter/msfilter/mstoolbar.hxx
@@ -177,7 +177,6 @@ class MSFILTER_DLLPUBLIC TBCBitMap : public TBBase
friend class TBCBSpecific; // #FIXME hacky access, need to fix
sal_Int32 cbDIB;
Bitmap mBitMap;
- int size;
public:
TBCBitMap();
~TBCBitMap();
diff --git a/filter/inc/filter/msfilter/svxmsbas.hxx b/filter/inc/filter/msfilter/svxmsbas.hxx
index 84bab35a3835..352d3eac4922 100644
--- a/filter/inc/filter/msfilter/svxmsbas.hxx
+++ b/filter/inc/filter/msfilter/svxmsbas.hxx
@@ -60,10 +60,8 @@ typedef std::map< String, ObjIdToName > ControlAttributeInfo;
class MSFILTER_DLLPUBLIC SvxImportMSVBasic
{
public:
- SvxImportMSVBasic( SfxObjectShell &rDocS, SotStorage &rRoot,
- sal_Bool bImportCode = sal_True, sal_Bool bCopyStorage = sal_True )
- : xRoot(&rRoot), rDocSh(rDocS),
- bImport(bImportCode), bCopy(bCopyStorage)
+ SvxImportMSVBasic( SfxObjectShell &rDocS, SotStorage &rRoot )
+ : xRoot(&rRoot), rDocSh(rDocS)
{}
// only for the export - copy or delete the saved VBA-macro-storage
// form the ObjectShell
@@ -79,8 +77,6 @@ public:
private:
SotStorageRef xRoot;
SfxObjectShell &rDocSh;
- sal_Bool bImport;
- sal_Bool bCopy;
};
#endif