diff os2/dw.c @ 489:bc156294dd16

Fix compiler complaints on OS/2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 08 Nov 2003 17:14:45 +0000
parents d6e07d292145
children a7f478e9c20c
line wrap: on
line diff
--- a/os2/dw.c	Sat Nov 08 16:49:44 2003 +0000
+++ b/os2/dw.c	Sat Nov 08 17:14:45 2003 +0000
@@ -6951,7 +6951,10 @@
  */
 void dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext)
 {
-    /* TODO */
+	handle = handle;
+	icon = icon;
+	bubbletext = bubbletext;
+	/* TODO */
 }
 
 /*
@@ -6962,7 +6965,9 @@
  */
 void dw_taskbar_delete(HWND handle, unsigned long icon)
 {
-    /* TODO */
+	handle = handle;
+	icon = icon;
+	/* TODO */
 }
 
 /*