summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CyteKit/Localize.h (renamed from CyteKit/CyteLocalize.h)6
-rw-r--r--CyteKit/PerlCompatibleRegEx.hpp2
-rw-r--r--CyteKit/ViewController.h (renamed from CyteKit/CyteViewController.h)6
-rw-r--r--CyteKit/ViewController.mm (renamed from CyteKit/CyteViewController.mm)2
-rw-r--r--CyteKit/WebView.h (renamed from CyteKit/CyteWebView.h)0
-rw-r--r--CyteKit/WebView.mm (renamed from CyteKit/CyteWebView.mm)2
-rw-r--r--CyteKit/WebViewController.h (renamed from CyteKit/CyteWebViewController.h)10
-rw-r--r--CyteKit/WebViewController.mm (renamed from CyteKit/CyteWebViewController.mm)4
-rw-r--r--CyteKit/stringWithUTF8Bytes.h (renamed from CyteKit/NSString-Cyte.h)6
-rw-r--r--CyteKit/stringWithUTF8Bytes.mm (renamed from CyteKit/NSString-Cyte.mm)2
-rw-r--r--Menes/Menes.h2
-rw-r--r--Menes/yieldToSelector.h (renamed from Menes/NSObject-MenesYieldToSelector.h)6
-rw-r--r--Menes/yieldToSelector.mm (renamed from Menes/NSObject-MenesYieldToSelector.mm)2
-rw-r--r--MobileCydia.mm6
14 files changed, 28 insertions, 28 deletions
diff --git a/CyteKit/CyteLocalize.h b/CyteKit/Localize.h
index a06bb0a..19b81e6 100644
--- a/CyteKit/CyteLocalize.h
+++ b/CyteKit/Localize.h
@@ -37,8 +37,8 @@
*/
/* }}} */
-#ifndef CyteKit_CyteLocalize_H
-#define CyteKit_CyteLocalize_H
+#ifndef CyteKit_Localize_H
+#define CyteKit_Localize_H
#include <Foundation/Foundation.h>
@@ -48,4 +48,4 @@ static inline NSString *UCLocalizeEx(NSString *key, NSString *value = nil) {
#define UCLocalize(key) UCLocalizeEx(@ key)
-#endif//CyteKit_CyteLocalize_H
+#endif//CyteKit_Localize_H
diff --git a/CyteKit/PerlCompatibleRegEx.hpp b/CyteKit/PerlCompatibleRegEx.hpp
index 3bd5e76..cbbe068 100644
--- a/CyteKit/PerlCompatibleRegEx.hpp
+++ b/CyteKit/PerlCompatibleRegEx.hpp
@@ -42,7 +42,7 @@
#include <pcre.h>
-#include "CyteKit/NSString-Cyte.h"
+#include "CyteKit/stringWithUTF8Bytes.h"
class Pcre {
private:
diff --git a/CyteKit/CyteViewController.h b/CyteKit/ViewController.h
index fb5d202..1cf1a50 100644
--- a/CyteKit/CyteViewController.h
+++ b/CyteKit/ViewController.h
@@ -37,8 +37,8 @@
*/
/* }}} */
-#ifndef CyteKit_CyteViewController_H
-#define CyteKit_CyteViewController_H
+#ifndef CyteKit_ViewController_H
+#define CyteKit_ViewController_H
#include <CyteKit/UCPlatform.h>
@@ -81,4 +81,4 @@
@end
-#endif//CyteKit_CyteViewController_H
+#endif//CyteKit_ViewController_H
diff --git a/CyteKit/CyteViewController.mm b/CyteKit/ViewController.mm
index 73e1630..ae69468 100644
--- a/CyteKit/CyteViewController.mm
+++ b/CyteKit/ViewController.mm
@@ -37,7 +37,7 @@
*/
/* }}} */
-#include "CyteKit/CyteViewController.h"
+#include "CyteKit/ViewController.h"
#include <Foundation/Foundation.h>
#include <UIKit/UIKit.h>
diff --git a/CyteKit/CyteWebView.h b/CyteKit/WebView.h
index 91878b7..91878b7 100644
--- a/CyteKit/CyteWebView.h
+++ b/CyteKit/WebView.h
diff --git a/CyteKit/CyteWebView.mm b/CyteKit/WebView.mm
index 03a3254..8fd362f 100644
--- a/CyteKit/CyteWebView.mm
+++ b/CyteKit/WebView.mm
@@ -37,7 +37,7 @@
*/
/* }}} */
-#include "CyteKit/CyteWebView.h"
+#include "CyteKit/WebView.h"
#include "CyteKit/WebThreadLocked.hpp"
#include <CydiaSubstrate/CydiaSubstrate.h>
diff --git a/CyteKit/CyteWebViewController.h b/CyteKit/WebViewController.h
index 5b91747..4c14419 100644
--- a/CyteKit/CyteWebViewController.h
+++ b/CyteKit/WebViewController.h
@@ -37,11 +37,11 @@
*/
/* }}} */
-#ifndef CyteKit_CyteWebViewController_H
-#define CyteKit_CyteWebViewController_H
+#ifndef CyteKit_WebViewController_H
+#define CyteKit_WebViewController_H
-#include "CyteKit/CyteViewController.h"
-#include "CyteKit/CyteWebView.h"
+#include "CyteKit/ViewController.h"
+#include "CyteKit/WebView.h"
#include <UIKit/UIKit.h>
@@ -136,4 +136,4 @@
@end
-#endif//CyteKit_CyteWebViewController_H
+#endif//CyteKit_WebViewController_H
diff --git a/CyteKit/CyteWebViewController.mm b/CyteKit/WebViewController.mm
index cd43c94..860955e 100644
--- a/CyteKit/CyteWebViewController.mm
+++ b/CyteKit/WebViewController.mm
@@ -3,8 +3,8 @@
#include <UIKit/UIKit.h>
#include "iPhonePrivate.h"
-#include "CyteKit/CyteLocalize.h"
-#include "CyteKit/CyteWebViewController.h"
+#include "CyteKit/Localize.h"
+#include "CyteKit/WebViewController.h"
#include "CyteKit/PerlCompatibleRegEx.hpp"
#include "CyteKit/WebThreadLocked.hpp"
diff --git a/CyteKit/NSString-Cyte.h b/CyteKit/stringWithUTF8Bytes.h
index a5955c4..94f472d 100644
--- a/CyteKit/NSString-Cyte.h
+++ b/CyteKit/stringWithUTF8Bytes.h
@@ -37,8 +37,8 @@
*/
/* }}} */
-#ifndef CyteKit_NSString_Cydia_H
-#define CyteKit_NSString_Cydia_H
+#ifndef CyteKit_stringWithUTF8Bytes_H
+#define CyteKit_stringWithUTF8Bytes_H
#include <Foundation/Foundation.h>
@@ -47,4 +47,4 @@
+ (NSString *) stringWithUTF8Bytes:(const char *)bytes length:(int)length;
@end
-#endif//CyteKit_NSString_Cydia_H
+#endif//CyteKit_stringWithUTF8Bytes_H
diff --git a/CyteKit/NSString-Cyte.mm b/CyteKit/stringWithUTF8Bytes.mm
index 6ab4c86..4e51902 100644
--- a/CyteKit/NSString-Cyte.mm
+++ b/CyteKit/stringWithUTF8Bytes.mm
@@ -37,7 +37,7 @@
*/
/* }}} */
-#include "CyteKit/NSString-Cyte.h"
+#include "CyteKit/stringWithUTF8Bytes.h"
@implementation NSString (Cyte)
diff --git a/Menes/Menes.h b/Menes/Menes.h
index 8c0540e..19b16b0 100644
--- a/Menes/Menes.h
+++ b/Menes/Menes.h
@@ -40,6 +40,6 @@
#ifndef Menes_Menes_H
#define Menes_Menes_H
-#include "Menes/NSObject-MenesYieldToSelector.h"
+#include "Menes/yieldToSelector.h"
#endif//Menes_Menes_H
diff --git a/Menes/NSObject-MenesYieldToSelector.h b/Menes/yieldToSelector.h
index e0ebd56..0d07a06 100644
--- a/Menes/NSObject-MenesYieldToSelector.h
+++ b/Menes/yieldToSelector.h
@@ -37,8 +37,8 @@
*/
/* }}} */
-#ifndef Menes_NSObject_MenesYieldToSelector_H
-#define Menes_NSObject_MenesYieldToSelector_H
+#ifndef Menes_yieldToSelector_H
+#define Menes_yieldToSelector_H
#include <Foundation/Foundation.h>
@@ -47,4 +47,4 @@
- (id) yieldToSelector:(SEL)selector;
@end
-#endif//Menes_NSObject_MenesYieldToSelector_H
+#endif//Menes_yieldToSelector_H
diff --git a/Menes/NSObject-MenesYieldToSelector.mm b/Menes/yieldToSelector.mm
index 5967781..e168313 100644
--- a/Menes/NSObject-MenesYieldToSelector.mm
+++ b/Menes/yieldToSelector.mm
@@ -37,7 +37,7 @@
*/
/* }}} */
-#include "Menes/NSObject-MenesYieldToSelector.h"
+#include "Menes/yieldToSelector.h"
@implementation NSObject (MenesYieldToSelector)
diff --git a/MobileCydia.mm b/MobileCydia.mm
index cb646f9..5c657a8 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -42,7 +42,7 @@
/* #include Directives {{{ */
#include "CyteKit/UCPlatform.h"
-#include "CyteKit/CyteLocalize.h"
+#include "CyteKit/Localize.h"
#include <objc/objc.h>
#include <objc/runtime.h>
@@ -120,10 +120,10 @@ extern "C" {
#include <Cytore.hpp>
-#include "CyteKit/CyteWebViewController.h"
-#include "CyteKit/NSString-Cyte.h"
#include "CyteKit/PerlCompatibleRegEx.hpp"
#include "CyteKit/WebScriptObject-Cyte.h"
+#include "CyteKit/WebViewController.h"
+#include "CyteKit/stringWithUTF8Bytes.h"
#include "Menes/Menes.h"