From 9230d5360aa0a47fe21f3073aa1ccdfa7d445db3 Mon Sep 17 00:00:00 2001 From: Grigori Goronzy Date: Sun, 27 Sep 2009 02:18:09 +0000 Subject: [PATCH] Fix breakage due to OS X support, introduced by one of the last commits Originally committed to SVN as r3590. --- aegisub/reporter/platform.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aegisub/reporter/platform.cpp b/aegisub/reporter/platform.cpp index b336e15c7..78e123076 100644 --- a/aegisub/reporter/platform.cpp +++ b/aegisub/reporter/platform.cpp @@ -118,6 +118,8 @@ wxString Platform::DesktopEnvironment() { return ""; } +#ifdef __APPLE__ + wxString Platform::PatchLevel() { return ""; } @@ -129,3 +131,5 @@ wxString Platform::QuickTimeExt() { wxString Platform::HardwareModel() { return ""; } + +#endif