From e7465e751949c8ba926721d77eee782f87711504 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 5 Oct 2009 21:02:02 +0000 Subject: [PATCH] More reporter tweaks to make it actually build and run on Windows. Originally committed to SVN as r3619. --- aegisub/reporter/include/platform.h | 2 +- aegisub/reporter/platform_windows.cpp | 9 +++++++-- aegisub/reporter/platform_windows.h | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/aegisub/reporter/include/platform.h b/aegisub/reporter/include/platform.h index 153635349..f28792e42 100644 --- a/aegisub/reporter/include/platform.h +++ b/aegisub/reporter/include/platform.h @@ -231,7 +231,7 @@ public: /// Firewall installed /// @return true/false /// @retval 1,0 - virtual wxString FireWall()=0; + virtual wxString Firewall()=0; /// DLL versions used /// @return wxXmlNode of DLLs used diff --git a/aegisub/reporter/platform_windows.cpp b/aegisub/reporter/platform_windows.cpp index 677cc68c3..57a335ace 100644 --- a/aegisub/reporter/platform_windows.cpp +++ b/aegisub/reporter/platform_windows.cpp @@ -67,11 +67,11 @@ wxString PlatformWindows::ServicePack() { return ""; }; -wxString PlatformWindows::GraphicsVersion() { +wxString PlatformWindows::DriverGraphicsVersion() { return ""; }; -wxString PlatformWindows::DShowFilters() { +wxString PlatformWindows::DirectShowFilters() { return ""; }; @@ -82,6 +82,11 @@ wxString PlatformWindows::AntiVirus() { wxString PlatformWindows::Firewall() { return ""; }; + +wxString PlatformWindows::DLLVersions() { + return ""; +}; + wxString PlatformWindows::OpenGLVendor() { return ""; }; diff --git a/aegisub/reporter/platform_windows.h b/aegisub/reporter/platform_windows.h index 85235a364..52008a62e 100644 --- a/aegisub/reporter/platform_windows.h +++ b/aegisub/reporter/platform_windows.h @@ -45,8 +45,8 @@ public: // Windows Specific virtual wxString ServicePack(); - virtual wxString GraphicsVersion(); - virtual wxString DShowFilters(); + virtual wxString DriverGraphicsVersion(); + virtual wxString DirectShowFilters(); virtual wxString AntiVirus(); virtual wxString Firewall(); virtual wxString DLLVersions();