diff options
author | 2008-10-27 04:03:35 -0400 | |
---|---|---|
committer | 2008-10-27 04:03:35 -0400 | |
commit | 0a99b9700008a6af352c52b3d9667edea2f5d26b (patch) | |
tree | 6683bddce134f10dd38c0787cafbd861502c1a40 | |
parent | a87d7403532c3a2be43e158e0cf3dd1e8e82f7ab (diff) | |
download | textadept-0a99b9700008a6af352c52b3d9667edea2f5d26b.tar.gz textadept-0a99b9700008a6af352c52b3d9667edea2f5d26b.zip |
Fixed indentation in src/textadept.c
-rw-r--r-- | src/textadept.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/textadept.c b/src/textadept.c index a3c85189..071c96f0 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -75,13 +75,13 @@ int main(int argc, char **argv) { char path[260]; CFURLRef bundle_url = CFBundleCopyBundleURL(bundle); CFStringRef bundle_path = - CFURLCopyFileSystemPath(bundle_url, kCFURLPOSIXPathStyle); - CFStringGetCString(bundle_path, path, 260, kCFStringEncodingASCII); + CFURLCopyFileSystemPath(bundle_url, kCFURLPOSIXPathStyle); + CFStringGetCString(bundle_path, path, 260, kCFStringEncodingASCII); char *resources_path = g_strconcat(path, "/Contents/Resources/", NULL); - textadept_home = static_cast<char*>(resources_path); - g_free(path); - CFRelease(bundle_url); - CFRelease(bundle_path); + textadept_home = static_cast<char*>(resources_path); + g_free(path); + CFRelease(bundle_url); + CFRelease(bundle_path); } else textadept_home = ""; #endif gtk_init(&argc, &argv); |