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

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 28 May 2012 20:52:20 +0200 (CEST)

hrev44208 adds 1 changeset to branch 'master'
old head: 72b7db341bb4b8be491ba2aa3453c297b621129f
new head: e0a6e07bb31229a8d7277e8d7bdfffccdb35ed3e

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

e0a6e07: Minor cleanup, no functional change.

                                      [ Rene Gollent <anevilyak@xxxxxxxxx> ]

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

Revision:    hrev44208
Commit:      e0a6e07bb31229a8d7277e8d7bdfffccdb35ed3e
URL:         http://cgit.haiku-os.org/haiku/commit/?id=e0a6e07
Author:      Rene Gollent <anevilyak@xxxxxxxxx>
Date:        Mon May 28 18:51:03 2012 UTC

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

1 file changed, 2 insertions(+), 3 deletions(-)
.../user_interface/gui/team_window/TeamWindow.cpp  |    5 ++---

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

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 e527184..bb8ca25 100644
--- a/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
+++ b/src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
@@ -1075,10 +1075,9 @@ TeamWindow::_UpdateSourcePathState()
        }
 
        if (!truncatedText.IsEmpty() && truncatedText != sourceText) {
-               fSourcePathView->SetToolTip(sourceText.String());
+               fSourcePathView->SetToolTip(sourceText);
                fSourcePathView->SetText(truncatedText);
-       }
-       else
+       } else
                fSourcePathView->SetText(sourceText);
 }
 


Other related posts:

  • » [haiku-commits] haiku: hrev44208 - src/apps/debugger/user_interface/gui/team_window - anevilyak