]> git.saurik.com Git - wxWidgets.git/commitdiff
made globals static to avoid linking problems
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 20 Sep 2003 15:37:07 +0000 (15:37 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 20 Sep 2003 15:37:07 +0000 (15:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/macnotfy.cpp
src/mac/macnotfy.cpp

index 65e43775982084403b50b5f54d485ffd425345e7..690f83b214d3199dc69c3a01961261251d0bd7ca 100644 (file)
@@ -26,9 +26,9 @@ struct wxMacNotificationEvents
 } ;
 
 typedef struct wxMacNotificationEvents wxMacNotificationEvents ;
-wxMacNotificationEvents gMacNotificationEvents ;
+static wxMacNotificationEvents gMacNotificationEvents ;
 
-ProcessSerialNumber gAppProcess ;
+static ProcessSerialNumber gAppProcess ;
 
 void wxMacWakeUp()
 {
index 65e43775982084403b50b5f54d485ffd425345e7..690f83b214d3199dc69c3a01961261251d0bd7ca 100644 (file)
@@ -26,9 +26,9 @@ struct wxMacNotificationEvents
 } ;
 
 typedef struct wxMacNotificationEvents wxMacNotificationEvents ;
-wxMacNotificationEvents gMacNotificationEvents ;
+static wxMacNotificationEvents gMacNotificationEvents ;
 
-ProcessSerialNumber gAppProcess ;
+static ProcessSerialNumber gAppProcess ;
 
 void wxMacWakeUp()
 {