no need to use private libbe variables anymore

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28073 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2008-10-14 09:19:21 +00:00
parent 9842ea8fda
commit 80fa95ad77
2 changed files with 1 additions and 18 deletions
+1 -17
View File
@@ -59,8 +59,6 @@ All rights reserved.
#include "TeamMenuItem.h" #include "TeamMenuItem.h"
extern menu_info *_menu_info_ptr_;
const int32 kDefaultRecentDocCount = 10; const int32 kDefaultRecentDocCount = 10;
const int32 kDefaultRecentFolderCount = 10; const int32 kDefaultRecentFolderCount = 10;
const int32 kDefaultRecentAppCount = 10; const int32 kDefaultRecentAppCount = 10;
@@ -85,9 +83,7 @@ TBarView::TBarView(BRect frame, bool vertical, bool left, bool top,
fCachedTypesList(NULL), fCachedTypesList(NULL),
fMaxRecentDocs(kDefaultRecentDocCount), fMaxRecentDocs(kDefaultRecentDocCount),
fMaxRecentApps(kDefaultRecentAppCount), fMaxRecentApps(kDefaultRecentAppCount),
fLastDragItem(NULL), fLastDragItem(NULL)
fClickToOpen(_menu_info_ptr_->click_to_open)
// init click to open to current local setting
{ {
} }
@@ -603,14 +599,6 @@ init_tracking_hook(BMenuItem *item,
status_t status_t
TBarView::DragStart() TBarView::DragStart()
{ {
// always set the click to open state
// to false during a drag
// so that a release on a menu/menubar will not
// leave the menu open (ExpandoMenuBar, BarMenuBar)
// will get reset to actual initial system
// state on DragStop
_menu_info_ptr_->click_to_open = false;
if (!Dragging()) if (!Dragging())
return B_OK; return B_OK;
@@ -710,10 +698,6 @@ TBarView::DragStop(bool full)
if (!Dragging()) if (!Dragging())
return; return;
// revert the local click to open to
// the launch state, cached in constructor
_menu_info_ptr_->click_to_open = fClickToOpen;
if (fExpando) { if (fExpando) {
if (fLastDragItem) { if (fLastDragItem) {
init_tracking_hook(fLastDragItem, NULL, NULL); init_tracking_hook(fLastDragItem, NULL, NULL);
-1
View File
@@ -166,7 +166,6 @@ class TBarView : public BView {
uint32 fMaxRecentApps; uint32 fMaxRecentApps;
TTeamMenuItem *fLastDragItem; TTeamMenuItem *fLastDragItem;
bool fClickToOpen;
}; };