diff options
author | David Tardon <dtardon@redhat.com> | 2011-01-25 12:28:27 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-01-25 15:21:13 +0100 |
commit | a3ec0f06d112b2fbd8461dbffb1f2b6a068d68fb (patch) | |
tree | 57877787440c11495ece29e63960cec227d05d6f /vcl/source | |
parent | c084e14932302b20d86fd4c959d509e3c5df3ca0 (diff) |
WaE: unused variables
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/window/taskpanelist.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/vcl/source/window/taskpanelist.cxx b/vcl/source/window/taskpanelist.cxx index 4299dfc00192..39437e860ad8 100644 --- a/vcl/source/window/taskpanelist.cxx +++ b/vcl/source/window/taskpanelist.cxx @@ -108,26 +108,8 @@ TaskPaneList::~TaskPaneList() void TaskPaneList::AddWindow( Window *pWindow ) { -#if OSL_DEBUG_LEVEL > 0 - bool bDockingWindow=false; - bool bToolbox=false; - bool bDialog=false; - bool bUnknown=false; -#endif - if( pWindow ) { -#if OSL_DEBUG_LEVEL > 0 - if( pWindow->GetType() == RSC_DOCKINGWINDOW ) - bDockingWindow = true; - else if( pWindow->GetType() == RSC_TOOLBOX ) - bToolbox = true; - else if( pWindow->IsDialog() ) - bDialog = true; - else - bUnknown = true; -#endif - ::std::vector< Window* >::iterator insertionPos = mTaskPanes.end(); for ( ::std::vector< Window* >::iterator p = mTaskPanes.begin(); p != mTaskPanes.end(); |