Remove unused VCLXWindowImpl parts
Change-Id: I6b26243e9669c791fdf1bd68193675ca780d41ee
This commit is contained in:
@@ -60,6 +60,7 @@
|
|||||||
#include <toolkit/helper/unopropertyarrayhelper.hxx>
|
#include <toolkit/helper/unopropertyarrayhelper.hxx>
|
||||||
|
|
||||||
#include <boost/bind.hpp>
|
#include <boost/bind.hpp>
|
||||||
|
#include <boost/noncopyable.hpp>
|
||||||
|
|
||||||
using namespace ::com::sun::star;
|
using namespace ::com::sun::star;
|
||||||
|
|
||||||
@@ -84,7 +85,7 @@ namespace MouseWheelBehavior = ::com::sun::star::awt::MouseWheelBehavior;
|
|||||||
|
|
||||||
//= VCLXWindowImpl
|
//= VCLXWindowImpl
|
||||||
|
|
||||||
class VCLXWindowImpl
|
class VCLXWindowImpl: private boost::noncopyable
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
typedef ::std::vector< VCLXWindow::Callback > CallbackArray;
|
typedef ::std::vector< VCLXWindow::Callback > CallbackArray;
|
||||||
@@ -183,19 +184,10 @@ public:
|
|||||||
inline VclContainerListenerMultiplexer& getContainerListeners() { return maContainerListeners; }
|
inline VclContainerListenerMultiplexer& getContainerListeners() { return maContainerListeners; }
|
||||||
inline TopWindowListenerMultiplexer& getTopWindowListeners() { return maTopWindowListeners; }
|
inline TopWindowListenerMultiplexer& getTopWindowListeners() { return maTopWindowListeners; }
|
||||||
|
|
||||||
virtual ~VCLXWindowImpl();
|
~VCLXWindowImpl();
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void SAL_CALL acquire();
|
|
||||||
virtual void SAL_CALL release();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DECL_LINK( OnProcessCallbacks, void* );
|
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;
|
return 0L;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void SAL_CALL VCLXWindowImpl::acquire()
|
|
||||||
{
|
|
||||||
mrAntiImpl.acquire();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void SAL_CALL VCLXWindowImpl::release()
|
|
||||||
{
|
|
||||||
mrAntiImpl.release();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Reference< XStyleSettings > VCLXWindowImpl::getStyleSettings()
|
Reference< XStyleSettings > VCLXWindowImpl::getStyleSettings()
|
||||||
{
|
{
|
||||||
SolarMutexGuard aGuard;
|
SolarMutexGuard aGuard;
|
||||||
|
Reference in New Issue
Block a user