summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-26 15:54:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-26 15:56:33 +0100
commit62fcdfa34aa302aa9051e90e75b94eb442fa1db7 (patch)
tree29a573c371599fded62431bf1e0f0eb923726a0e /svtools
parent1dc1eaadd108883bd187411c721507df3d0d779e (diff)
-Werror,-Wunused-private-field
...fixed more thoroughly than 49c1964b427c9f2f169ba4d826d346adc7555ae0 "WaE: private field 'm_bCompoundControlChild' is not used." Change-Id: Ief1093c054fe272b82da78ab103e8ca3feb72b90
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/edit/textwindowpeer.cxx6
-rw-r--r--svtools/source/misc/svtaccessiblefactory.cxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/edit/textwindowpeer.cxx b/svtools/source/edit/textwindowpeer.cxx
index bbe30dd9f894..11fa8c9eb38c 100644
--- a/svtools/source/edit/textwindowpeer.cxx
+++ b/svtools/source/edit/textwindowpeer.cxx
@@ -24,8 +24,8 @@
namespace svt
{
- TextWindowPeer::TextWindowPeer(::TextView & rView, bool bCompoundControlChild):
- m_rEngine(*rView.GetTextEngine()), m_rView(rView), m_bCompoundControlChild(bCompoundControlChild)
+ TextWindowPeer::TextWindowPeer(::TextView & rView):
+ m_rEngine(*rView.GetTextEngine()), m_rView(rView)
{
SetWindow(rView.GetWindow());
m_pFactoryAccess.reset( new AccessibleFactoryAccess );
@@ -39,7 +39,7 @@ namespace svt
css::uno::Reference< css::accessibility::XAccessibleContext > TextWindowPeer::CreateAccessibleContext()
{
return m_pFactoryAccess->getFactory().createAccessibleTextWindowContext(
- this, m_rEngine, m_rView, m_bCompoundControlChild
+ this, m_rEngine, m_rView
);
}
}
diff --git a/svtools/source/misc/svtaccessiblefactory.cxx b/svtools/source/misc/svtaccessiblefactory.cxx
index ee5a9c048ac8..86b81037b5b9 100644
--- a/svtools/source/misc/svtaccessiblefactory.cxx
+++ b/svtools/source/misc/svtaccessiblefactory.cxx
@@ -124,7 +124,7 @@ namespace svt
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
createAccessibleTextWindowContext(
- VCLXWindow* /*pVclXWindow*/, TextEngine& /*rEngine*/, TextView& /*rView*/, bool /*bCompoundControlChild*/
+ VCLXWindow* /*pVclXWindow*/, TextEngine& /*rEngine*/, TextView& /*rView*/
) const
{
return NULL;