diff options
author | Oystein Eftevaag | 2009-12-26 17:18:18 +0000 |
---|---|---|
committer | Oystein Eftevaag | 2009-12-26 17:18:18 +0000 |
commit | 915c60c62978dbd15b1345d69a2c1f5db3f19a2f (patch) | |
tree | 568bedd884c8ed1d9b24ac5771e7dfaab91b37ca | |
parent | f6da0146b20913bf2ba9a4493eaec6d929e4facc (diff) | |
download | scummvm-rg350-915c60c62978dbd15b1345d69a2c1f5db3f19a2f.tar.gz scummvm-rg350-915c60c62978dbd15b1345d69a2c1f5db3f19a2f.tar.bz2 scummvm-rg350-915c60c62978dbd15b1345d69a2c1f5db3f19a2f.zip |
Using #include instead of #import to include some mac os x headers to avoid silly gcc warnings, that we'd otherwise have to remove -pedantic to get rid of
svn-id: r46597
-rw-r--r-- | gui/browser_osx.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/browser_osx.mm b/gui/browser_osx.mm index 14b274de10..a3a09b8ed2 100644 --- a/gui/browser_osx.mm +++ b/gui/browser_osx.mm @@ -30,8 +30,8 @@ #include "common/system.h" #include "common/algorithm.h" -#import <AppKit/NSOpenPanel.h> -#import <Foundation/NSString.h> +#include <AppKit/NSOpenPanel.h> +#include <Foundation/NSString.h> namespace GUI { |