mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-23 08:13:50 +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)
|
protected void layout(Composite composite, boolean flushCache)
|
||||||
{
|
{
|
||||||
Point ptTitleSize = getTitleSize(_strText);
|
Point ptTitleSize = getTitleSize(_strText);
|
||||||
Point ptLocation = getLocation();
|
getLocation();
|
||||||
|
|
||||||
if (_bCollapsed == true)
|
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
|
* Sets tooltips used in expanded and collapsed states.
|
||||||
* @param String - tooltip for the expanded state. e.g. Click line to collapse the section
|
* @param strExpandedToolTip tooltip for the expanded state. For example, "click line to collapse the section".
|
||||||
* @param String - tooltip for the collapsed state. e.g. Click line to expand the section
|
* @param strCollapsedToolTip tooltip for the collapsed state. For example, "click line to expand the section".
|
||||||
*/
|
*/
|
||||||
public void setToolTips(String strExpandedToolTip, String strCollapsedToolTip)
|
public void setToolTips(String strExpandedToolTip, String strCollapsedToolTip)
|
||||||
{
|
{
|
||||||
|
|
|
@ -62,7 +62,6 @@ public class RSENewConnectionWizardDefaultDelegateMainPage
|
||||||
super(wizard, "NewConnection", title, description); //$NON-NLS-1$
|
super(wizard, "NewConnection", title, description); //$NON-NLS-1$
|
||||||
parentHelpId = RSEUIPlugin.HELPPREFIX + "wncc0000"; //$NON-NLS-1$
|
parentHelpId = RSEUIPlugin.HELPPREFIX + "wncc0000"; //$NON-NLS-1$
|
||||||
setHelp(parentHelpId);
|
setHelp(parentHelpId);
|
||||||
this.delegate = delegate;
|
|
||||||
form = getForm();
|
form = getForm();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue