summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java
index 734cdad81b..b322f2c325 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IOleCommandTarget.java
@@ -11,15 +11,15 @@
package org.eclipse.swt.internal.ole.win32;
public class IOleCommandTarget extends IUnknown {
-public IOleCommandTarget(int /*long*/ address) {
+public IOleCommandTarget(long /*int*/ address) {
super(address);
}
public int Exec(
GUID pguidCmdGroup, // Pointer to command group
int nCmdID, // Identifier of command to execute
int nCmdExecOpt, // Options for executing the command
- int /*long*/ pvaIn, // Pointer to input arguments
- int /*long*/ pvaOut // Pointer to command output
+ long /*int*/ pvaIn, // Pointer to input arguments
+ long /*int*/ pvaOut // Pointer to command output
){
return COM.VtblCall(4, address, pguidCmdGroup, nCmdID, nCmdExecOpt, pvaIn, pvaOut);
}