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/IPersistStorage.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IPersistStorage.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IPersistStorage.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IPersistStorage.java
index e4acf5af83..638cda9838 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IPersistStorage.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/IPersistStorage.java
@@ -17,22 +17,22 @@ import org.eclipse.swt.internal.win32.*;
public class IPersistStorage extends IPersist
{
-public IPersistStorage(long /*int*/ address) {
+public IPersistStorage(long address) {
super(address);
}
public int IsDirty() {
return OS.VtblCall(4, address);
}
-public int InitNew(long /*int*/ pStg) {
+public int InitNew(long pStg) {
return OS.VtblCall(5, address, pStg);
}
-public int Load(long /*int*/ pStg) {
+public int Load(long pStg) {
return OS.VtblCall(6, address, pStg);
}
-public int Save(long /*int*/ pStgSave, boolean fSameAsLoad) {
+public int Save(long pStgSave, boolean fSameAsLoad) {
return COM.VtblCall(7, address, pStgSave, fSameAsLoad);
}
-public int SaveCompleted(long /*int*/ pStgNew) {
+public int SaveCompleted(long pStgNew) {
return OS.VtblCall(8, address, pStgNew);
}
public int HandsOffStorage(){

Back to the top