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
This commit is contained in:
DarkWyrm 2005-01-19 15:35:49 +00:00
parent 0d9d87e7f2
commit 4e51dee8d0
1 changed files with 4 additions and 1 deletions

View File

@ -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.