From a60e98f4a137f99ec0ba1bd923d9ba77a034f520 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Tue, 25 Mar 2014 14:03:18 -0400 Subject: [PATCH] AboutWindow: Make setters virtual --- headers/private/shared/AboutWindow.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/private/shared/AboutWindow.h b/headers/private/shared/AboutWindow.h index 70695ecfd4..225483f82f 100644 --- a/headers/private/shared/AboutWindow.h +++ b/headers/private/shared/AboutWindow.h @@ -41,13 +41,13 @@ public: const char** contents = NULL); BBitmap* Icon(); - void SetIcon(BBitmap* icon); + virtual void SetIcon(BBitmap* icon); const char* Name(); - void SetName(const char* name); + virtual void SetName(const char* name); const char* Version(); - void SetVersion(const char* version); + virtual void SetVersion(const char* version); private: virtual void _ReservedAboutWindow20();