diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-03-17 10:48:49 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-03-17 10:48:49 +0100 |
commit | 3633ecf16da60f3365fa29deb796026f08b07edf (patch) | |
tree | aeee8342f702054ed44e7fd556ec6ceead3e7003 | |
parent | 8eb9b6624a177077705551538c4d5e7bbd8879e2 (diff) |
slidecopy: removed the old TaskPane implementation, now completely superseded by the new one
carrying both implementations was only temporary, to be able to easily compare both.
The new implementation still has not A11Y API implementation, that's on the TODO list.
-rw-r--r-- | vcl/source/window/window.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 502d61d8958a..8db6fdc7f1c3 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -4323,6 +4323,17 @@ Window::Window( Window* pParent, const ResId& rResId ) } // ----------------------------------------------------------------------- +#if OSL_DEBUG_LEVEL > 0 +namespace +{ + const sal_Char* lcl_getWindowClassName( const Window& i_rWindow ) + { + return typeid( i_rWindow ).name(); + } +} +#endif + +// ----------------------------------------------------------------------- Window::~Window() { |