diff options
Diffstat (limited to 'vcl/source/window/window.cxx')
-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() { |