Quantum version 2.4.2
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / wizards / ExportBookmarkWizardPage.java
index e8be91d..94dccdd 100644 (file)
@@ -178,7 +178,6 @@ public class ExportBookmarkWizardPage extends WizardPage {
     }
 
     private void createDestinationArea(Composite composite) {
-        GridData data;
         Composite fileArea = new Composite(composite, SWT.NULL);
         fileArea.setLayout(new GridLayout(3, false));
         fileArea.setLayoutData(
@@ -187,7 +186,7 @@ public class ExportBookmarkWizardPage extends WizardPage {
         label.setText("File name:");
         
         this.fileNameText = new Text(fileArea, SWT.BORDER);
-        data = new GridData();
+        GridData data = new GridData();
         data.horizontalAlignment = GridData.HORIZONTAL_ALIGN_FILL;
         data.widthHint = 300;
         this.fileNameText.setLayoutData(data);