diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-04-30 19:24:15 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-04-30 19:29:51 (GMT) |
commit | 74bdae2ad13a9859b354f3ce5354d7c4f19ce414 (patch) | |
tree | 500977433b3974db17517bb22523a0f41fb79b68 /Slimber/Cocoa | |
parent | 5e5384895c0363f4b0ee7cf7dc829561a6541f74 (diff) | |
download | swift-74bdae2ad13a9859b354f3ce5354d7c4f19ce414.zip swift-74bdae2ad13a9859b354f3ce5354d7c4f19ce414.tar.bz2 |
Replace #include "" by #include <> in SwifTools, Swiftob, Slimber and Limber.
Diffstat (limited to 'Slimber/Cocoa')
-rw-r--r-- | Slimber/Cocoa/main.h | 2 | ||||
-rw-r--r-- | Slimber/Cocoa/main.mm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Slimber/Cocoa/main.h b/Slimber/Cocoa/main.h index 681139d..0f686ad 100644 --- a/Slimber/Cocoa/main.h +++ b/Slimber/Cocoa/main.h @@ -6,6 +6,6 @@ #pragma once -#include "Swiften/EventLoop/Cocoa/CocoaEventLoop.h" +#include <Swiften/EventLoop/Cocoa/CocoaEventLoop.h> extern Swift::CocoaEventLoop* eventLoop; diff --git a/Slimber/Cocoa/main.mm b/Slimber/Cocoa/main.mm index fc051e0..167c1ab 100644 --- a/Slimber/Cocoa/main.mm +++ b/Slimber/Cocoa/main.mm @@ -1,7 +1,7 @@ #include <Cocoa/Cocoa.h> #include "Slimber/Cocoa/main.h" -#include "Swiften/EventLoop/Cocoa/CocoaEventLoop.h" +#include <Swiften/EventLoop/Cocoa/CocoaEventLoop.h> Swift::CocoaEventLoop* eventLoop; |