Author: solomax
Date: Thu Dec 20 02:28:24 2012
New Revision: 1424270
URL: http://svn.apache.org/viewvc?rev=1424270&view=rev
Log:
Java6 compilation error is fixed
Modified:
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/screen/webstart/gui/ScreenSharerFrame.java
Modified:
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/screen/webstart/gui/ScreenSharerFrame.java
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/screen/webstart/gui/ScreenSharerFrame.java?rev=1424270&r1=1424269&r2=1424270&view=diff
==============================================================================
---
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/screen/webstart/gui/ScreenSharerFrame.java
(original)
+++
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/screen/webstart/gui/ScreenSharerFrame.java
Thu Dec 20 02:28:24 2012
@@ -81,7 +81,7 @@ public class ScreenSharerFrame extends J
private NumberSpinner spinnerY;
private NumberSpinner spinnerWidth;
private NumberSpinner spinnerHeight;
- private JComboBox<KeyValue<ScreenQuality>> comboQuality;
+ private JComboBox comboQuality;
private JTextField textPublishHost;
private JTextField textPublishApp;
private JTextField textPublishId;
@@ -409,7 +409,7 @@ public class ScreenSharerFrame extends J
labelQuality.setBounds(250, 140, 200, 24);
panelScreen.add(labelQuality);
- comboQuality = new JComboBox<KeyValue<ScreenQuality>>();
+ comboQuality = new JComboBox();
comboQuality.addItem(new
KeyValue<ScreenQuality>(getTextLabel(textLabels, 19), ScreenQuality.VeryHigh));
//#id 1090
comboQuality.addItem(new
KeyValue<ScreenQuality>(getTextLabel(textLabels, 20), ScreenQuality.High));
//#id 1091
comboQuality.addItem(new
KeyValue<ScreenQuality>(getTextLabel(textLabels, 21), ScreenQuality.Medium));
//#id 1092