[haiku-commits] haiku: hrev45653 - src/apps/debugger/user_interface/gui/team_window

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 10 May 2013 09:41:11 +0200 (CEST)

hrev45653 adds 1 changeset to branch 'master'
old head: 55eb18ef2f0fe1db4c60bcceaee15c5d259ea856
new head: abb7ea65120d761dc4dedc37b6c79eff80f8b649
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=abb7ea6+%5E55eb18e

----------------------------------------------------------------------------

abb7ea6: Renamed File menu to Team and Quit to Close.
  
   There isn't actually a file on disk somewhere. And Quit
   could have been mistaken to quit the entire Debugger
   application, as Quit in File usually does with applications.
   However, it will only close the that team window and only
   quit Debugger if it was the last open window.

                                      [ Stephan Aßmus <superstippi@xxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45653
Commit:      abb7ea65120d761dc4dedc37b6c79eff80f8b649
URL:         http://cgit.haiku-os.org/haiku/commit/?id=abb7ea6
Author:      Stephan Aßmus <superstippi@xxxxxx>
Date:        Fri May 10 07:39:25 2013 UTC

----------------------------------------------------------------------------

1 file changed, 3 insertions(+), 3 deletions(-)
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp | 6 +++---

----------------------------------------------------------------------------

diff --git a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp 
b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
index a23c821..cbb6e71 100644
--- a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
+++ b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
@@ -841,10 +841,10 @@ TeamWindow::_Init()
                fSourcePathView->AddFilter(filter);
 
        // add menus and menu items
-       BMenu* menu = new BMenu("File");
+       BMenu* menu = new BMenu("Team");
        fMenuBar->AddItem(menu);
-       BMenuItem* item = new BMenuItem("Quit", new BMessage(B_QUIT_REQUESTED),
-               'Q');
+       BMenuItem* item = new BMenuItem("Close", new BMessage(B_QUIT_REQUESTED),
+               'W');
        menu->AddItem(item);
        item->SetTarget(this);
        menu = new BMenu("Edit");


Other related posts:

  • » [haiku-commits] haiku: hrev45653 - src/apps/debugger/user_interface/gui/team_window - superstippi