1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

boxes with icons don't need click vector

git-svn-id: svn://svn.cc65.org/cc65/trunk@2348 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst 2003-08-17 14:49:05 +00:00
parent 1390fe6edd
commit 1c4a581284

View File

@ -20,7 +20,6 @@ static dlgBoxStr _mbdlg_EMPTY = {
static dlgBoxStr _mbdlg_OK = {
DB_DEFPOS(1),
DB_OPVEC(&RstrFrmDialogue),
DB_USRROUT(&_mbprintout),
DB_ICON(OK, DBI_X_1, DBI_Y_2),
DB_END,
@ -28,7 +27,6 @@ static dlgBoxStr _mbdlg_OK = {
static dlgBoxStr _mbdlg_OKCANCEL = {
DB_DEFPOS(1),
DB_OPVEC(&RstrFrmDialogue),
DB_USRROUT(&_mbprintout),
DB_ICON(OK, DBI_X_0, DBI_Y_2),
DB_ICON(CANCEL, DBI_X_2, DBI_Y_2),
@ -37,7 +35,6 @@ static dlgBoxStr _mbdlg_OKCANCEL = {
static dlgBoxStr _mbdlg_YESNO = {
DB_DEFPOS(1),
DB_OPVEC(&RstrFrmDialogue),
DB_USRROUT(&_mbprintout),
DB_ICON(YES, DBI_X_0, DBI_Y_2),
DB_ICON(NO, DBI_X_2, DBI_Y_2),