summaryrefslogtreecommitdiffstats
path: root/framework/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-23 21:38:22 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-26 10:18:38 +0100
commitdea0b22a4639a2ef9c75ed6f04d61ca9d99fcb95 (patch)
tree4972226c0349fd6f146ed6930468a671f8c0742a /framework/source
parenttake pity on the gcc 4.5.X users (diff)
downloadcore-dea0b22a4639a2ef9c75ed6f04d61ca9d99fcb95.tar.gz
core-dea0b22a4639a2ef9c75ed6f04d61ca9d99fcb95.zip
callcatcher: panelwindow unused
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/uielement/panelwindow.cxx54
1 files changed, 0 insertions, 54 deletions
diff --git a/framework/source/uielement/panelwindow.cxx b/framework/source/uielement/panelwindow.cxx
deleted file mode 100644
index e24fbc3d8ee0..000000000000
--- a/framework/source/uielement/panelwindow.cxx
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_framework.hxx"
-
-//_________________________________________________________________________________________________________________
-// my own includes
-//_________________________________________________________________________________________________________________
-
-#include <uielement/panelwindow.hxx>
-
-namespace framework
-{
-
-PanelWindow::PanelWindow( Window* pParent, WinBits nWinBits ) :
- DockingWindow( pParent, nWinBits )
-{
-}
-
-PanelWindow::~PanelWindow()
-{
-}
-
-void PanelWindow::Command( const CommandEvent& rCEvt )
-{
- if ( m_aCommandHandler.IsSet() )
- m_aCommandHandler.Call( (void *)( &rCEvt ));
- DockingWindow::Command( rCEvt );
-}
-
-void PanelWindow::StateChanged( StateChangedType nType )
-{
- DockingWindow::StateChanged( nType );
- if ( m_aStateChangedHandler.IsSet() )
- m_aStateChangedHandler.Call( &nType );
-}
-
-void PanelWindow::DataChanged( const DataChangedEvent& rDCEvt )
-{
- DockingWindow::DataChanged( rDCEvt );
- if ( m_aDataChangedHandler.IsSet() )
- m_aDataChangedHandler.Call( (void*)&rDCEvt );
-}
-
-void PanelWindow::Resize()
-{
- DockingWindow::Resize();
- if ( m_pContentWindow )
- m_pContentWindow->SetSizePixel( GetOutputSizePixel() );
-}
-
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */