Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2003-04-06 00:33:45 +0000
committerAlain Magloire2003-04-06 00:33:45 +0000
commitda81942d76b60c2ab3a1039100d25b1d38680462 (patch)
tree4b72121dcdd473ca1a370b71d9ece91d8d37a544 /core/org.eclipse.cdt.ui.tests/src
parent7994b5c33347763755011f2f715802ee3f42de13 (diff)
downloadorg.eclipse.cdt-da81942d76b60c2ab3a1039100d25b1d38680462.tar.gz
org.eclipse.cdt-da81942d76b60c2ab3a1039100d25b1d38680462.tar.xz
org.eclipse.cdt-da81942d76b60c2ab3a1039100d25b1d38680462.zip
Get rid of some warnings.
Diffstat (limited to 'core/org.eclipse.cdt.ui.tests/src')
-rw-r--r--core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/testplugin/util/VerifyDialog.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/testplugin/util/VerifyDialog.java b/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/testplugin/util/VerifyDialog.java
index a28a1e43524..2f8abd10143 100644
--- a/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/testplugin/util/VerifyDialog.java
+++ b/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/testplugin/util/VerifyDialog.java
@@ -31,7 +31,7 @@ import org.eclipse.swt.widgets.Shell;
public class VerifyDialog extends TitleAreaDialog {
private int SIZING_WIDTH = 400;
- private static int TEST_TYPE;
+ static int TEST_TYPE;
public static final int TEST_SIZING = 0;
public static final int TEST_FOCUS = 1;
public static final int TEST_ACCESS = 2;
@@ -42,7 +42,7 @@ public class VerifyDialog extends TitleAreaDialog {
private Point _testDialogSize;
private Label _queryLabel;
- private Button _yesButton;
+ Button _yesButton;
private Button _noButton;
private Button _checkList[];
private String _failureText;
@@ -181,7 +181,7 @@ public class VerifyDialog extends TitleAreaDialog {
* Disables the yes button if any of the items in the checklist
* are unchecked. Enables the yes button otherwise.
*/
- private void checkYesEnable() {
+ void checkYesEnable() {
boolean enable = true;
for (int i = 0; i < _checkList.length; i++) {
if ( !_checkList[i].getSelection() ) {
@@ -193,7 +193,7 @@ public class VerifyDialog extends TitleAreaDialog {
/*
* Initializes the checklist, banner texts, and query label
*/
- private void initializeTest() {
+ void initializeTest() {
IDialogTestPass test = _dialogTests[TEST_TYPE];
setTitle( test.title() );
setMessage( test.description() );
@@ -282,7 +282,7 @@ public class VerifyDialog extends TitleAreaDialog {
}
FailureDialog dialog = new FailureDialog( getShell() );
dialog.create();
- String temp = text.toString();
+ //String temp = text.toString();
dialog.setText( text.toString() );
if (dialog.open() == IDialogConstants.OK_ID) {
_failureText = dialog.toString();

Back to the top