From af34705c34c719d9532faedd4c715da94764e76b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 20 Sep 2003 15:37:07 +0000 Subject: [PATCH] made globals static to avoid linking problems git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/macnotfy.cpp | 4 ++-- src/mac/macnotfy.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mac/carbon/macnotfy.cpp b/src/mac/carbon/macnotfy.cpp index 65e4377598..690f83b214 100644 --- a/src/mac/carbon/macnotfy.cpp +++ b/src/mac/carbon/macnotfy.cpp @@ -26,9 +26,9 @@ struct wxMacNotificationEvents } ; typedef struct wxMacNotificationEvents wxMacNotificationEvents ; -wxMacNotificationEvents gMacNotificationEvents ; +static wxMacNotificationEvents gMacNotificationEvents ; -ProcessSerialNumber gAppProcess ; +static ProcessSerialNumber gAppProcess ; void wxMacWakeUp() { diff --git a/src/mac/macnotfy.cpp b/src/mac/macnotfy.cpp index 65e4377598..690f83b214 100644 --- a/src/mac/macnotfy.cpp +++ b/src/mac/macnotfy.cpp @@ -26,9 +26,9 @@ struct wxMacNotificationEvents } ; typedef struct wxMacNotificationEvents wxMacNotificationEvents ; -wxMacNotificationEvents gMacNotificationEvents ; +static wxMacNotificationEvents gMacNotificationEvents ; -ProcessSerialNumber gAppProcess ; +static ProcessSerialNumber gAppProcess ; void wxMacWakeUp() { -- 2.47.2