summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java')
-rw-r--r--qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java20
1 files changed, 7 insertions, 13 deletions
diff --git a/qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java b/qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java
index 34ad3f819784..cdf41c1a650c 100644
--- a/qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java
+++ b/qadevOOo/tests/java/mod/_toolkit/UnoControlComboBox.java
@@ -69,7 +69,7 @@ util.DesktopTools.closeDoc(xTextDoc);
@Override
protected TestEnvironment createTestEnvironment(TestParameters Param,
- PrintWriter log) {
+ PrintWriter log) throws Exception {
XInterface oObj = null;
XWindowPeer the_win = null;
XToolkit the_kit = null;
@@ -102,18 +102,12 @@ util.DesktopTools.closeDoc(xTextDoc);
xTextDoc.getCurrentController());
//get the ComboBoxControl for the needed Object relations
- try {
- oObj = the_access.getControl(the_Model);
- aControl = the_access.getControl(the_Model2);
- the_win = the_access.getControl(the_Model).getPeer();
- the_kit = the_win.getToolkit();
- aDevice = the_kit.createScreenCompatibleDevice(200, 200);
- aGraphic = aDevice.createGraphics();
- } catch (Exception e) {
- log.println("Couldn't get ComboBoxControl");
- e.printStackTrace(log);
- throw new StatusException("Couldn't get ComboBoxControl", e);
- }
+ oObj = the_access.getControl(the_Model);
+ aControl = the_access.getControl(the_Model2);
+ the_win = the_access.getControl(the_Model).getPeer();
+ the_kit = the_win.getToolkit();
+ aDevice = the_kit.createScreenCompatibleDevice(200, 200);
+ aGraphic = aDevice.createGraphics();
log.println("creating a new environment for UnoControlComboBox object");