summaryrefslogtreecommitdiff
path: root/vcl/source/window/taskpanelist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/taskpanelist.cxx')
-rw-r--r--vcl/source/window/taskpanelist.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/vcl/source/window/taskpanelist.cxx b/vcl/source/window/taskpanelist.cxx
index 47ed31576464..c70056d7e221 100644
--- a/vcl/source/window/taskpanelist.cxx
+++ b/vcl/source/window/taskpanelist.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <tools/rcid.h>
#include <vcl/dockwin.hxx>
@@ -75,8 +74,6 @@ struct LTRSortBackward : public ::std::binary_function< const Window*, const Win
}
};
-
-
static void ImplTaskPaneListGrabFocus( Window *pWindow, bool bForward )
{
// put focus in child of floating windows which is typically a toolbar
@@ -86,8 +83,6 @@ static void ImplTaskPaneListGrabFocus( Window *pWindow, bool bForward )
pWindow->ImplGrabFocus( GETFOCUS_F6 | (bForward ? GETFOCUS_FORWARD : GETFOCUS_BACKWARD));
}
-
-
TaskPaneList::TaskPaneList()
{
}
@@ -96,8 +91,6 @@ TaskPaneList::~TaskPaneList()
{
}
-
-
void TaskPaneList::AddWindow( Window *pWindow )
{
if( pWindow )
@@ -136,8 +129,6 @@ void TaskPaneList::AddWindow( Window *pWindow )
}
}
-
-
void TaskPaneList::RemoveWindow( Window *pWindow )
{
::std::vector< Window* >::iterator p;
@@ -149,8 +140,6 @@ void TaskPaneList::RemoveWindow( Window *pWindow )
}
}
-
-
bool TaskPaneList::IsInList( Window *pWindow )
{
::std::vector< Window* >::iterator p;
@@ -161,8 +150,6 @@ bool TaskPaneList::IsInList( Window *pWindow )
return false;
}
-
-
bool TaskPaneList::HandleKeyEvent( KeyEvent aKeyEvent )
{
@@ -249,8 +236,6 @@ bool TaskPaneList::HandleKeyEvent( KeyEvent aKeyEvent )
return false;
}
-
-
// returns next splitter
Window* TaskPaneList::FindNextSplitter( Window *pWindow, bool bForward )
{
@@ -288,8 +273,6 @@ Window* TaskPaneList::FindNextSplitter( Window *pWindow, bool bForward )
return pWindow;
}
-
-
// returns first valid item (regardless of type) if pWindow==0, otherwise returns next valid float
Window* TaskPaneList::FindNextFloat( Window *pWindow, bool bForward )
{
@@ -332,6 +315,4 @@ Window* TaskPaneList::FindNextFloat( Window *pWindow, bool bForward )
return pWindow;
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */