From 58259b009d3edd3710b36ef447aaee995be802c7 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Mon, 27 Feb 2012 13:35:34 -0800 Subject: [PATCH] Remove space from front of absolute. --- Classes/native_handler.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/native_handler.mm b/Classes/native_handler.mm index dc2e5aaf0..092f5cfcd 100644 --- a/Classes/native_handler.mm +++ b/Classes/native_handler.mm @@ -10,7 +10,7 @@ NSString *stringFromCefV8Value(const CefRefPtr& value) { NativeHandler::NativeHandler() : CefV8Handler() { m_object = CefV8Value::CreateObject(NULL); - const char *functionNames[] = {"exists", "read", "write", " absolute", "list", "isFile", "isDirectory", "remove", "asyncList", "open", "quit", "writeToPasteboard", "readFromPasteboard"}; + const char *functionNames[] = {"exists", "read", "write", "absolute", "list", "isFile", "isDirectory", "remove", "asyncList", "open", "quit", "writeToPasteboard", "readFromPasteboard"}; NSUInteger arrayLength = sizeof(functionNames) / sizeof(const char *); for (NSUInteger i = 0; i < arrayLength; i++) { const char *functionName = functionNames[i];