comparison src/myVncProxy/OptionsNoFrame.java @ 125:e3dddee7b934

modify OptionsNofFrame.java
author e085711
date Mon, 08 Aug 2011 16:54:34 +0900
parents c2c21a67097c
children cb00150c223e
comparison
equal deleted inserted replaced
124:c2c21a67097c 125:e3dddee7b934
72 72
73 // 73 //
74 // Constructor. Set up the labels and choices from the names and values 74 // Constructor. Set up the labels and choices from the names and values
75 // arrays. 75 // arrays.
76 // 76 //
77 77
78 OptionsNoFrame(VncProxyService v) { 78 OptionsNoFrame(VncProxyService v) {
79 viewer = v; 79 viewer = v;
80 preferredEncoding = -1;
80 } 81 }
81 82
82 OptionsNoFrame(VncProxyService v, VncCanvas vc) { 83 OptionsNoFrame(VncProxyService v, VncCanvas vc) {
83 84 // OptionsNoFrame(VncProxyService v) {
85 viewer = v;
86
84 for (int i = 0; i < names.length; i++) { 87 for (int i = 0; i < names.length; i++) {
85 labels[i] = new Label(names[i]); 88 labels[i] = new Label(names[i]);
86 89
87 choices[i] = new Choice(); 90 choices[i] = new Choice();
88 91