]>
git.saurik.com Git - apple/icu.git/blob - icuSources/samples/layout/GnomeGUISupport.cpp
2 *******************************************************************************
4 * Copyright (C) 1999-2001, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 * file name: GnomeGUISupport.cpp
10 * created on: 11/06/2001
11 * created by: Eric R. Mader
20 #include "GnomeGUISupport.h"
22 void GnomeGUISupport::postErrorMessage(const char *message
, const char *title
)
28 s
= g_strconcat(title
, ":\n", message
, NULL
);
29 error
= gnome_error_dialog(s
);
30 gtk_widget_show(error
);
33 fprintf(stderr
, "%s: %s\n", title
, message
);