mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 01:45:33 +02:00
[cleanup] fix compiler warnings
This commit is contained in:
parent
ac4a85c366
commit
3330ad3b50
2 changed files with 4 additions and 5 deletions
|
@ -96,7 +96,7 @@ public class SystemCollapsableSection extends Composite implements MouseListener
|
|||
protected void layout(Composite composite, boolean flushCache)
|
||||
{
|
||||
Point ptTitleSize = getTitleSize(_strText);
|
||||
Point ptLocation = getLocation();
|
||||
getLocation();
|
||||
|
||||
if (_bCollapsed == true)
|
||||
{
|
||||
|
@ -398,9 +398,9 @@ public class SystemCollapsableSection extends Composite implements MouseListener
|
|||
}
|
||||
|
||||
/**
|
||||
* Set the two tooltips used in expanded state and collapsed state
|
||||
* @param String - tooltip for the expanded state. e.g. Click line to collapse the section
|
||||
* @param String - tooltip for the collapsed state. e.g. Click line to expand the section
|
||||
* Sets tooltips used in expanded and collapsed states.
|
||||
* @param strExpandedToolTip tooltip for the expanded state. For example, "click line to collapse the section".
|
||||
* @param strCollapsedToolTip tooltip for the collapsed state. For example, "click line to expand the section".
|
||||
*/
|
||||
public void setToolTips(String strExpandedToolTip, String strCollapsedToolTip)
|
||||
{
|
||||
|
|
|
@ -62,7 +62,6 @@ public class RSENewConnectionWizardDefaultDelegateMainPage
|
|||
super(wizard, "NewConnection", title, description); //$NON-NLS-1$
|
||||
parentHelpId = RSEUIPlugin.HELPPREFIX + "wncc0000"; //$NON-NLS-1$
|
||||
setHelp(parentHelpId);
|
||||
this.delegate = delegate;
|
||||
form = getForm();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue