# HG changeset patch # User mhessling@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1080036627 0 # Node ID d3ce0afa6cf512c85a339ed84f2813cc2f519338 # Parent 2ff26b697877cd48b51af5fd40c9faf9480c3f0b Remove extraneous arguments to dw_messagebox() diff -r 2ff26b697877 -r d3ce0afa6cf5 gtk/dw.c --- a/gtk/dw.c Sat Mar 20 01:21:13 2004 +0000 +++ b/gtk/dw.c Tue Mar 23 10:10:27 2004 +0000 @@ -7452,7 +7452,7 @@ */ if(box == item) { - dw_messagebox("dw_box_pack_end()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!",box,item); + dw_messagebox("dw_box_pack_end()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!"); return; } @@ -8685,7 +8685,7 @@ */ if(box == item) { - dw_messagebox("dw_box_pack_start()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!",box,item); + dw_messagebox("dw_box_pack_start()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!"); return; } diff -r 2ff26b697877 -r d3ce0afa6cf5 os2/dw.c --- a/os2/dw.c Sat Mar 20 01:21:13 2004 +0000 +++ b/os2/dw.c Tue Mar 23 10:10:27 2004 +0000 @@ -5174,7 +5174,7 @@ */ if(box == item) { - dw_messagebox(funcname, DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!",box,item); + dw_messagebox(funcname, DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!"); return; } @@ -7951,7 +7951,7 @@ */ if(box == item) { - dw_messagebox(funcname, DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!",box,item); + dw_messagebox(funcname, DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!"); return; } diff -r 2ff26b697877 -r d3ce0afa6cf5 win/dw.c --- a/win/dw.c Sat Mar 20 01:21:13 2004 +0000 +++ b/win/dw.c Tue Mar 23 10:10:27 2004 +0000 @@ -4936,7 +4936,7 @@ */ if(box == item) { - dw_messagebox("dw_box_pack_start()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!",box,item); + dw_messagebox("dw_box_pack_start()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!"); return; } @@ -7910,7 +7910,7 @@ */ if(box == item) { - dw_messagebox("dw_box_pack_end()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!",box,item); + dw_messagebox("dw_box_pack_end()", DW_MB_OK|DW_MB_ERROR, "Danger! Danger! Will Robinson; box and item are the same!"); return; }