aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--devel/tvision/files/patch-lib::dialogs.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/tvision/files/patch-lib::dialogs.h b/devel/tvision/files/patch-lib::dialogs.h
new file mode 100644
index 00000000000..fbae06e03a2
--- /dev/null
+++ b/devel/tvision/files/patch-lib::dialogs.h
@@ -0,0 +1,11 @@
+--- lib/dialogs.h.old Tue Jun 19 18:29:26 2001
++++ lib/dialogs.h Tue Jun 19 18:29:41 2001
+@@ -407,7 +407,7 @@
+
+ TSItem( const char *aValue, TSItem *aNext )
+ { value = newStr(aValue); next = aNext; }
+- ~TSItem() { delete (void *)value; }
++ ~TSItem() { delete value; }
+
+ const char *value;
+ TSItem *next;