(svn r12975) -Codechange: replace DeleteWindow(w) with delete w.

This commit is contained in:
rubidium
2008-05-06 21:28:30 +00:00
parent 46a0ebe1d9
commit e6c944a6c4
21 changed files with 86 additions and 86 deletions

View File

@@ -246,7 +246,7 @@ static void QuerySignEditWndProc(Window *w, WindowEvent *e)
/* FALL THROUGH */
case QUERY_EDIT_SIGN_WIDGET_CANCEL:
DeleteWindow(w);
delete w;
break;
}
break;
@@ -258,7 +258,7 @@ static void QuerySignEditWndProc(Window *w, WindowEvent *e)
/* FALL THROUGH */
case 2: // ESC pressed, closes window, abandons changes
DeleteWindow(w);
delete w;
break;
}
break;