1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- From 20b7b86cb1fa8e221ab001de520397eeec4734d1 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
- Date: Thu, 23 Jan 2014 16:18:50 +0100
- Subject: [PATCH 1/3] Fix compilation in the VLC context
- ---
- client/iOS/BWCrashReportTextFormatter.h | 2 +-
- client/iOS/BWCrashReportTextFormatter.m | 2 +-
- client/iOS/BWQuincyManager.h | 2 +-
- client/iOS/BWQuincyManager.m | 2 +-
- 4 files changed, 4 insertions(+), 4 deletions(-)
- diff --git a/client/iOS/BWCrashReportTextFormatter.h b/client/iOS/BWCrashReportTextFormatter.h
- index 207d9cd..86d63f0 100644
- --- a/client/iOS/BWCrashReportTextFormatter.h
- +++ b/client/iOS/BWCrashReportTextFormatter.h
- @@ -34,7 +34,7 @@
-
- #import <Foundation/Foundation.h>
-
- -#import <CrashReporter/PLCrashReport.h>
- +#import "PLCrashReport.h"
-
- // Dictionary keys for array elements returned by arrayOfAppUUIDsForCrashReport:
- #ifndef kBWBinaryImageKeyUUID
- diff --git a/client/iOS/BWCrashReportTextFormatter.m b/client/iOS/BWCrashReportTextFormatter.m
- index 3607510..76204ce 100644
- --- a/client/iOS/BWCrashReportTextFormatter.m
- +++ b/client/iOS/BWCrashReportTextFormatter.m
- @@ -31,7 +31,7 @@
- * OTHER DEALINGS IN THE SOFTWARE.
- */
-
- -#import <CrashReporter/CrashReporter.h>
- +#import "CrashReporter.h"
-
- #import "BWCrashReportTextFormatter.h"
-
- diff --git a/client/iOS/BWQuincyManager.h b/client/iOS/BWQuincyManager.h
- index dce403d..45692e9 100644
- --- a/client/iOS/BWQuincyManager.h
- +++ b/client/iOS/BWQuincyManager.h
- @@ -30,7 +30,7 @@
-
- #import <Foundation/Foundation.h>
-
- -#import <CrashReporter/CrashReporter.h>
- +#import "CrashReporter.h"
- #import "BWQuincyManagerDelegate.h"
-
-
- diff --git a/client/iOS/BWQuincyManager.m b/client/iOS/BWQuincyManager.m
- index db08b2f..8fa3200 100644
- --- a/client/iOS/BWQuincyManager.m
- +++ b/client/iOS/BWQuincyManager.m
- @@ -28,7 +28,7 @@
- * OTHER DEALINGS IN THE SOFTWARE.
- */
-
- -#import <CrashReporter/CrashReporter.h>
- +#import "CrashReporter.h"
- #import <SystemConfiguration/SystemConfiguration.h>
- #import <UIKit/UIKit.h>
-
- --
- 1.8.3.4 (Apple Git-47)
|