From 8204df2aa7cff71e70d025d8563dfb7d5e1a5e00 Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Sun, 23 Mar 2003 18:53:33 +0000 Subject: [PATCH] Made our BAppServerLink a friend class git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3001 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/app/Application.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/headers/os/app/Application.h b/headers/os/app/Application.h index 93c06d8f0f..b3cf167a71 100644 --- a/headers/os/app/Application.h +++ b/headers/os/app/Application.h @@ -56,6 +56,8 @@ class BResources; class BMessageRunner; struct _server_heap_; struct _drag_data_; +namespace BPrivate { class BAppServerLink; } + // BApplication class ---------------------------------------------------------- class BApplication : public BLooper { @@ -127,7 +129,7 @@ private: friend class BBitmap; friend class BScrollBar; friend class BPrivateScreen; - friend class _BAppServerLink_; + friend BPrivate::BAppServerLink; friend void _toggle_handles_(bool); BApplication(uint32 signature);