From 3bc1f37469a4933966f049cc57093fb564b721a3 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 16 Nov 2002 13:53:03 +0000 Subject: [PATCH] better msgs --- otk/application.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/otk/application.cc b/otk/application.cc index 29dc6bf4..2530fdd1 100644 --- a/otk/application.cc +++ b/otk/application.cc @@ -56,8 +56,9 @@ void OtkApplication::loadStyle(void) void OtkApplication::exec(void) { if (!_main_widget) { - std::cerr << "No main widget set. You must create a main OtkWidget for " << - "the OtkApplication before calling OtkApplication::exec().\n"; + std::cerr << "ERROR: No main widget set. You must create a main " << + "OtkWidget for the OtkApplication before calling " << + "OtkApplication::exec().\n"; ::exit(1); } while (1) { @@ -70,8 +71,8 @@ bool OtkApplication::setMainWidget(const OtkWidget *main_widget) { // ignore it if it has already been set if (_main_widget) { - std::cerr << "More than one main OtkWidget being created for the " << - "OtkApplication!\n"; + std::cerr << "WARNING: More than one main OtkWidget being created for " << + "the OtkApplication!\n"; return false; } -- 2.39.2