mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetic fix for the memory view tab's tooltips.
This commit is contained in:
parent
77c0c0b3fb
commit
fe95aee277
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-11-29 Mikhail Khodjaiants
|
||||
Cosmetic fix for the memory view tab's tooltips.
|
||||
* MemoryControlArea.java
|
||||
|
||||
2002-11-28 Mikhail Khodjaiants
|
||||
Fixes for 'Run to line' actions.
|
||||
* RunToLineActionDelegate.java
|
||||
|
|
|
@ -406,7 +406,7 @@ public class MemoryControlArea extends Composite
|
|||
if ( getParent() instanceof CTabFolder )
|
||||
{
|
||||
CTabItem[] tabItems = ((CTabFolder)getParent()).getItems();
|
||||
tabItems[fIndex].setToolTipText( "Memory View " + (fIndex + 1) + ": " + newText );
|
||||
tabItems[fIndex].setToolTipText( "Memory View " + (fIndex + 1) + ( ( newText.length() > 0 ) ? ( ": " + newText ) : "" ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue