Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/ICustomDestinationList.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/ICustomDestinationList.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/ICustomDestinationList.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/ICustomDestinationList.java
index da7d4f0d2a..c5f09a8eb4 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/ICustomDestinationList.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/ICustomDestinationList.java
@@ -13,8 +13,6 @@
*******************************************************************************/
package org.eclipse.swt.internal.ole.win32;
-import org.eclipse.swt.internal.win32.*;
-
public class ICustomDestinationList extends IUnknown {
public ICustomDestinationList(long address) {
@@ -22,7 +20,7 @@ public ICustomDestinationList(long address) {
}
public int SetAppID(char[] pszAppID) {
- return OS.VtblCall(3, address, pszAppID);
+ return COM.VtblCall(3, address, pszAppID);
}
public int BeginList(int[] pcMinSlots, GUID riid, long[] ppv) {
@@ -30,19 +28,19 @@ public int BeginList(int[] pcMinSlots, GUID riid, long[] ppv) {
}
public int AppendCategory(char[] pszCategory, IObjectArray poa) {
- return OS.VtblCall(5, address, pszCategory, poa.address);
+ return COM.VtblCall(5, address, pszCategory, poa.address);
}
public int AddUserTasks(IUnknown poa) {
- return OS.VtblCall(7, address, poa.address);
+ return COM.VtblCall(7, address, poa.address);
}
public int CommitList() {
- return OS.VtblCall(8, address);
+ return COM.VtblCall(8, address);
}
public int DeleteList(char[] pszAppID) {
- return OS.VtblCall(10, address, pszAppID);
+ return COM.VtblCall(10, address, pszAppID);
}
}

Back to the top