summaryrefslogtreecommitdiff
path: root/include
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 /include
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 'include')
-rw-r--r--include/svtools/accessiblefactory.hxx2
-rw-r--r--include/svtools/textwindowpeer.hxx3
2 files changed, 2 insertions, 3 deletions
diff --git a/include/svtools/accessiblefactory.hxx b/include/svtools/accessiblefactory.hxx
index 18eec036a239..cd8a65483bed 100644
--- a/include/svtools/accessiblefactory.hxx
+++ b/include/svtools/accessiblefactory.hxx
@@ -103,7 +103,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 = 0;
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
diff --git a/include/svtools/textwindowpeer.hxx b/include/svtools/textwindowpeer.hxx
index cdcc6f89b98d..14ef753c3f5a 100644
--- a/include/svtools/textwindowpeer.hxx
+++ b/include/svtools/textwindowpeer.hxx
@@ -35,7 +35,7 @@ namespace svt
class TextWindowPeer: public ::VCLXWindow
{
public:
- SVT_DLLPUBLIC TextWindowPeer(::TextView & rView, bool bCompoundControlChild = false);
+ SVT_DLLPUBLIC TextWindowPeer(::TextView & rView);
virtual ~TextWindowPeer();
@@ -53,7 +53,6 @@ private:
::TextEngine & m_rEngine;
::TextView & m_rView;
- bool m_bCompoundControlChild;
::std::auto_ptr< ::svt::AccessibleFactoryAccess > m_pFactoryAccess;
};