summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/event/MethodInvocation.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/event/MethodInvocation.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java b/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java
index 4218c07ffdef..b7e8209ea8a3 100644
--- a/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java
+++ b/wizards/com/sun/star/wizards/ui/event/MethodInvocation.java
@@ -33,11 +33,11 @@ import java.lang.reflect.Method;
public class MethodInvocation
{
//the method to invoke.
- Method mMethod;
+ private Method mMethod;
//the object to invoke the method on.
- Object mObject;
+ private Object mObject;
//with one Parameter / without
- boolean mWithParam;
+ private boolean mWithParam;
/** Creates a new instance of MethodInvokation */
public MethodInvocation(String methodName, Object obj) throws NoSuchMethodException