From 75f60c8b383d9770bb18f6aebcfd11f25473cf44 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 25 Oct 2009 03:34:24 +0000 Subject: [PATCH] Set default flags to B_MULTIPLE_LAUNCH only, as is the case on BeOS. This fixes issues where apps that forgot to specify flags in their resources would be unable to receive remote messages. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33755 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/app/RegistrarDefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/private/app/RegistrarDefs.h b/headers/private/app/RegistrarDefs.h index f769130c37..dfef5f044e 100644 --- a/headers/private/app/RegistrarDefs.h +++ b/headers/private/app/RegistrarDefs.h @@ -160,8 +160,8 @@ enum { // misc constants enum { - B_REG_DEFAULT_APP_FLAGS = B_MULTIPLE_LAUNCH | B_ARGV_ONLY - | _B_APP_INFO_RESERVED1_, + B_REG_DEFAULT_APP_FLAGS = B_MULTIPLE_LAUNCH + | _B_APP_INFO_RESERVED1_, B_REG_APP_LOOPER_PORT_CAPACITY = 100, };