all repos — openbox @ 3bc1f37469a4933966f049cc57093fb564b721a3

openbox fork - make it a bit more like ryudo

better msgs
Dana Jansens danakj@orodu.net
commit

3bc1f37469a4933966f049cc57093fb564b721a3

parent

34a9f87ed27b44d5f0337477605fc22306802eac

1 files changed, 5 insertions(+), 4 deletions(-)

jump to
M otk/application.ccotk/application.cc

@@ -56,8 +56,9 @@

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; }