summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/UnoDialog.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/UnoDialog.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/UnoDialog.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/ui/UnoDialog.java b/wizards/com/sun/star/wizards/ui/UnoDialog.java
index 583751de9874..cdc7b8bfe58c 100644
--- a/wizards/com/sun/star/wizards/ui/UnoDialog.java
+++ b/wizards/com/sun/star/wizards/ui/UnoDialog.java
@@ -532,7 +532,7 @@ public class UnoDialog implements EventNames
int iCurStep = AnyConverter.toInt(getControlProperty(controlname, PropertyNames.PROPERTY_STEP));
setControlProperty(controlname, PropertyNames.PROPERTY_STEP, new Integer(iStep));
}
- catch (com.sun.star.uno.Exception exception)
+ catch (com.sun.star.lang.IllegalArgumentException exception)
{
exception.printStackTrace(System.err);
}
@@ -563,7 +563,7 @@ public class UnoDialog implements EventNames
setControlProperty(controlname, PropertyNames.PROPERTY_STEP, UIConsts.INVISIBLESTEP);
}
}
- catch (com.sun.star.uno.Exception exception)
+ catch (com.sun.star.lang.IllegalArgumentException exception)
{
exception.printStackTrace(System.err);
}
@@ -580,7 +580,7 @@ public class UnoDialog implements EventNames
Helper.setUnoPropertyValue(xDialogModel, PropertyNames.PROPERTY_STEP, 99);
Helper.setUnoPropertyValue(xDialogModel, PropertyNames.PROPERTY_STEP, new Integer(ncurstep));
}
- catch (com.sun.star.uno.Exception exception)
+ catch (com.sun.star.lang.IllegalArgumentException exception)
{
exception.printStackTrace(System.err);
}