From: Dana Jansens Date: Sat, 16 Nov 2002 13:53:03 +0000 (+0000) Subject: better msgs X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=3bc1f37469a4933966f049cc57093fb564b721a3;p=chaz%2Fopenbox better msgs --- 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; }