Kaydet (Commit) 6e469f76 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove unused VCLXWindowImpl parts

Change-Id: I6b26243e9669c791fdf1bd68193675ca780d41ee
üst fb542379
......@@ -60,6 +60,7 @@
#include <toolkit/helper/unopropertyarrayhelper.hxx>
#include <boost/bind.hpp>
#include <boost/noncopyable.hpp>
using namespace ::com::sun::star;
......@@ -84,7 +85,7 @@ namespace MouseWheelBehavior = ::com::sun::star::awt::MouseWheelBehavior;
//= VCLXWindowImpl
class VCLXWindowImpl
class VCLXWindowImpl: private boost::noncopyable
{
private:
typedef ::std::vector< VCLXWindow::Callback > CallbackArray;
......@@ -183,19 +184,10 @@ public:
inline VclContainerListenerMultiplexer& getContainerListeners() { return maContainerListeners; }
inline TopWindowListenerMultiplexer& getTopWindowListeners() { return maTopWindowListeners; }
virtual ~VCLXWindowImpl();
protected:
virtual void SAL_CALL acquire();
virtual void SAL_CALL release();
~VCLXWindowImpl();
private:
DECL_LINK( OnProcessCallbacks, void* );
private:
VCLXWindowImpl(); // never implemented
VCLXWindowImpl( const VCLXWindowImpl& ); // never implemented
VCLXWindowImpl& operator=( const VCLXWindowImpl& ); // never implemented
};
......@@ -313,19 +305,6 @@ IMPL_LINK_NOARG(VCLXWindowImpl, OnProcessCallbacks)
return 0L;
}
void SAL_CALL VCLXWindowImpl::acquire()
{
mrAntiImpl.acquire();
}
void SAL_CALL VCLXWindowImpl::release()
{
mrAntiImpl.release();
}
Reference< XStyleSettings > VCLXWindowImpl::getStyleSettings()
{
SolarMutexGuard aGuard;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment