• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision153 (tree)
Time2015-12-02 20:22:12
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatJVMPreferencePage.java (revision 152)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatJVMPreferencePage.java (revision 153)
@@ -89,7 +89,8 @@
8989 TomcatPluginResources.TOMCAT_PREF_DEBUGMODE_KEY, PREF_PAGE_DEBUGMODE_LABEL, composite);
9090 initField(this.debugModeEditor);
9191
92- new Label(composite, SWT.NULL);
92+ Label lbl = new Label(composite, SWT.NULL);
93+ lbl.setParent(composite);
9394
9495 Composite group = new Composite(composite, SWT.NULL);
9596 GridData gd = new GridData(GridData.FILL_BOTH);
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/AdvancedPreferencePage.java (revision 152)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/AdvancedPreferencePage.java (revision 153)
@@ -82,7 +82,8 @@
8282 initField(this.base);
8383
8484 //blank
85- new Label(composite, SWT.NULL);
85+ Label lbl = new Label(composite, SWT.NULL);
86+ lbl.setParent(composite);
8687
8788 return composite;
8889 }
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/NewTomcatProjectWizardPage.java (revision 152)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/NewTomcatProjectWizardPage.java (revision 153)
@@ -60,7 +60,8 @@
6060 // new Label(composite, SWT.NULL);
6161 createUpdateXmlGroup(composite);
6262
63- new Label(composite, SWT.NULL);
63+ Label lbl = new Label(composite, SWT.NULL);
64+ lbl.setParent(composite);
6465 createRootDirGroup(composite);
6566
6667 setErrorMessage(null);
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProjectGeneralPropertyPage.java (revision 152)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatProjectGeneralPropertyPage.java (revision 153)
@@ -81,7 +81,8 @@
8181 createExtraInformationGroup(group);
8282
8383 //blank
84- new Label(group, SWT.NULL);
84+ Label lbl = new Label(group, SWT.NULL);
85+ lbl.setParent(composite);
8586
8687 createRootDirGroup(group);
8788
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatPreferencePage.java (revision 152)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatPreferencePage.java (revision 153)
@@ -101,7 +101,8 @@
101101 PREF_PAGE_HOME_LABEL, homeGroup);
102102
103103 //blank
104- new Label(composite, SWT.NULL);
104+ Label lbl = new Label(composite, SWT.NULL);
105+ lbl.setParent(composite);
105106
106107 Group modeGroup = new Group(composite, SWT.NONE);
107108 modeGroup.setLayout(new GridLayout(1, false));
@@ -117,7 +118,8 @@
117118 configGroup, false);
118119
119120 //blank
120- new Label(composite, SWT.NULL);
121+ lbl = new Label(composite, SWT.NULL);
122+ lbl.setParent(composite);
121123
122124 this.configLocationGroup = new Composite(modeGroup, SWT.NULL);
123125 this.configFile = new TomcatFileFieldEditor(
@@ -133,7 +135,8 @@
133135 this.home.setPropertyChangeListener(this);
134136
135137 //blank
136- new Label(composite, SWT.NULL);
138+ lbl = new Label(composite, SWT.NULL);
139+ lbl.setParent(composite);
137140
138141 initLayoutAndData(homeGroup, 3);
139142 initLayoutAndData(modeGroup, 1);
--- trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatManagerAppPreferencePage.java (revision 152)
+++ trunk/plugin/com.sysdeo.eclipse.tomcat/src/com/sysdeo/eclipse/tomcat/TomcatManagerAppPreferencePage.java (revision 153)
@@ -64,8 +64,10 @@
6464 Label details = new Label(box, SWT.WRAP);
6565 details.setText(PREF_PAGE_MANAGER_BANNER);
6666
67- new Label(getFieldEditorParent(), SWT.NULL);
68- new Label(getFieldEditorParent(), SWT.NULL);
67+ Label lbl = new Label(getFieldEditorParent(), SWT.NULL);
68+ lbl.setParent(getFieldEditorParent());
69+ lbl = new Label(getFieldEditorParent(), SWT.NULL);
70+ lbl.setParent(getFieldEditorParent());
6971
7072 this.urlEditor = new StringFieldEditor(
7173 TomcatPluginResources.TOMCAT_PREF_MANAGER_URL,
@@ -73,8 +75,10 @@
7375 getFieldEditorParent());
7476 addField(this.urlEditor);
7577
76- new Label(getFieldEditorParent(), SWT.NULL);
77- new Label(getFieldEditorParent(), SWT.NULL);
78+ lbl = new Label(getFieldEditorParent(), SWT.NULL);
79+ lbl.setParent(getFieldEditorParent());
80+ lbl = new Label(getFieldEditorParent(), SWT.NULL);
81+ lbl.setParent(getFieldEditorParent());
7882
7983 this.userEditor = new StringFieldEditor(
8084 TomcatPluginResources.TOMCAT_PREF_MANAGER_USER,
@@ -88,7 +92,8 @@
8892 getFieldEditorParent());
8993 addField(this.pwdEditor);
9094
91- new Label(getFieldEditorParent(), SWT.NULL);
95+ lbl = new Label(getFieldEditorParent(), SWT.NULL);
96+ lbl.setParent(getFieldEditorParent());
9297
9398 Button addUserBt = new Button(getFieldEditorParent(), SWT.PUSH);
9499 addUserBt.setText(PREF_PAGE_MANAGER_ADDUSER);