Swapped unused _BSession_ pointer for a PortLink pointer

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2890 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2003-03-12 01:21:08 +00:00
parent 3d4100d5c3
commit 6e4a70109a
+4 -1
View File
@@ -21,6 +21,7 @@
// //
// File Name: Window.h // File Name: Window.h
// Author: Erik Jaesler ([email protected]) // Author: Erik Jaesler ([email protected])
// DarkWyrm <[email protected]>
// Description: BWindow is the base class for all windows (graphic areas // Description: BWindow is the base class for all windows (graphic areas
// displayed on-screen). // displayed on-screen).
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
@@ -28,6 +29,8 @@
#ifndef _WINDOW_H #ifndef _WINDOW_H
#define _WINDOW_H #define _WINDOW_H
class PortLink;
// Standard Includes ----------------------------------------------------------- // Standard Includes -----------------------------------------------------------
// System Includes ------------------------------------------------------------- // System Includes -------------------------------------------------------------
@@ -404,7 +407,7 @@ virtual BMessage *ConvertToMessage(void* raw, int32 code);
BView *top_view; BView *top_view;
BView *fFocus; BView *fFocus;
BView *fLastMouseMovedView; BView *fLastMouseMovedView;
_BSession_ *a_session; PortLink *serverlink;
BMenuBar *fKeyMenuBar; BMenuBar *fKeyMenuBar;
BButton *fDefaultButton; BButton *fDefaultButton;
BList accelList; BList accelList;