From 4e51dee8d03b60864ce1c33118d65c5d63613a5a Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Wed, 19 Jan 2005 15:35:49 +0000 Subject: [PATCH] don't prevent ReadyToRun from being called when running without the registrar git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10877 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/app/Application.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/kits/app/Application.cpp b/src/kits/app/Application.cpp index f5d36655d1..668eb9dbfb 100644 --- a/src/kits/app/Application.cpp +++ b/src/kits/app/Application.cpp @@ -395,7 +395,10 @@ BApplication::InitData(const char *signature, status_t *_error) fInitError = B_ERROR; } } -#endif // ifdef RUN_WITHOUT_REGISTRAR +#else + // We need to have ReadyToRun called even when we're not using the registrar + PostMessage(B_READY_TO_RUN, this); +#endif // ifndef RUN_WITHOUT_REGISTRAR // TODO: Not completely sure about the order, but this should be close.