Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/hpc/stand/hpcboot Add MB_ICONWARNING style to the m...



details:   https://anonhg.NetBSD.org/src/rev/590cc793965a
branches:  trunk
changeset: 556481:590cc793965a
user:      uwe <uwe%NetBSD.org@localhost>
date:      Thu Dec 18 12:25:03 2003 +0000

description:
Add MB_ICONWARNING style to the message box.  Use explicit MB_OK.

diffstat:

 sys/arch/hpc/stand/hpcboot/arch.cpp |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 82df099cf3b7 -r 590cc793965a sys/arch/hpc/stand/hpcboot/arch.cpp
--- a/sys/arch/hpc/stand/hpcboot/arch.cpp       Thu Dec 18 12:21:36 2003 +0000
+++ b/sys/arch/hpc/stand/hpcboot/arch.cpp       Thu Dec 18 12:25:03 2003 +0000
@@ -1,4 +1,4 @@
-/* -*-C++-*-   $NetBSD: arch.cpp,v 1.7 2002/03/25 17:23:19 uch Exp $    */
+/* -*-C++-*-   $NetBSD: arch.cpp,v 1.8 2003/12/18 12:25:03 uwe Exp $    */
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -113,7 +113,8 @@
 
        if (_dll == NULL) {
                MessageBox(HpcMenuInterface::Instance()._root->_window,
-                   TEXT("Can't load Coredll.dll"), TEXT("WARNING"), 0);
+                   TEXT("Can't load coredll.dll."), TEXT("WARNING"),
+                   MB_ICONWARNING | MB_OK);
 
                return NULL;
        }



Home | Main Index | Thread Index | Old Index