Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDean Roberts2003-03-10 22:25:33 +0000
committerDean Roberts2003-03-10 22:25:33 +0000
commitf5d8125553154ed98ed616de3e95a1b61ad34630 (patch)
tree1ffdef9a6b1130baeafacfbdd6c61284829c5512 /bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java
parentb4ebfd6393146803d50265d164c2061e05a93d60 (diff)
downloadeclipse.platform.swt-f5d8125553154ed98ed616de3e95a1b61ad34630.tar.gz
eclipse.platform.swt-f5d8125553154ed98ed616de3e95a1b61ad34630.tar.xz
eclipse.platform.swt-f5d8125553154ed98ed616de3e95a1b61ad34630.zip
Copyright fix - automated changesv20030310-postcopyrightupdate
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java18
1 files changed, 11 insertions, 7 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java
index 7658786ff2..6f08e09326 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/SHMENUBARINFO.java
@@ -1,11 +1,15 @@
-package org.eclipse.swt.internal.win32;
-
-/*
- * Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
- * This file is made available under the terms of the Common Public License v1.0
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
- */
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.win32;
+
public class SHMENUBARINFO {
public int cbSize;
public int hwndParent;
@@ -16,4 +20,4 @@ public class SHMENUBARINFO {
public int cBmpImages;
public int hwndMB;
public static final int sizeof = OS.IsSP ? 36 : 32;
-} \ No newline at end of file
+}

Back to the top