From 4ea7f45bc5d8ac2936c0c498fd3fc0a45f375f19 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 20 Apr 2013 21:12:40 +0200 Subject: [PATCH] BRequest: Change attribute protection from private to protected Particularly fInitStatus is of interest for derived classes. --- headers/os/package/Request.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/package/Request.h b/headers/os/package/Request.h index 5414201366..71d1ba8ca7 100644 --- a/headers/os/package/Request.h +++ b/headers/os/package/Request.h @@ -39,7 +39,7 @@ protected: const BContext& fContext; -private: +protected: status_t fInitStatus; JobQueue* fJobQueue; };