summaryrefslogtreecommitdiff
path: root/cpp/test/ios/controller/Classes
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2017-05-02 13:58:41 -0400
committerJoe George <joe@zeroc.com>2017-05-02 15:42:34 -0400
commitcd472ddf8bd8a9c2bcfc80e988e6db450ea7dbf9 (patch)
tree5dbc0bfc43e2c195ab7e7d819e1914611f943f1d /cpp/test/ios/controller/Classes
parentRemoved trailing whitespace generated by slice2js (diff)
downloadice-cd472ddf8bd8a9c2bcfc80e988e6db450ea7dbf9.tar.bz2
ice-cd472ddf8bd8a9c2bcfc80e988e6db450ea7dbf9.tar.xz
ice-cd472ddf8bd8a9c2bcfc80e988e6db450ea7dbf9.zip
Remove trailing whitespace
Diffstat (limited to 'cpp/test/ios/controller/Classes')
-rw-r--r--cpp/test/ios/controller/Classes/ViewController.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/ios/controller/Classes/ViewController.m b/cpp/test/ios/controller/Classes/ViewController.m
index 158df2a630d..ded9990a842 100644
--- a/cpp/test/ios/controller/Classes/ViewController.m
+++ b/cpp/test/ios/controller/Classes/ViewController.m
@@ -29,7 +29,7 @@
const char* bundle = "Cpp98ControllerBundle.bundle";
#endif
bundlePath = [bundlePath stringByAppendingPathComponent:[NSString stringWithUTF8String:bundle]];
-
+
NSURL* bundleURL = [NSURL fileURLWithPath:bundlePath];
CFBundleRef handle = CFBundleCreate(NULL, (CFURLRef)bundleURL);
if(!handle)
@@ -37,7 +37,7 @@
[self println:[NSString stringWithFormat:@"Could not find bundle %@", bundlePath]];
return;
}
-
+
CFErrorRef error = nil;
Boolean loaded = CFBundleLoadExecutableAndReturnError(handle, &error);
if(error != nil || !loaded)
@@ -45,7 +45,7 @@
[self println:[(__bridge NSError *)error description]];
return;
}
-
+
startController = CFBundleGetFunctionPointerForName(handle, CFSTR("startController"));
if(startController == 0)
{
@@ -54,7 +54,7 @@
[self println:err];
return;
}
-
+
stopController = CFBundleGetFunctionPointerForName(handle, CFSTR("stopController"));
if(stopController == 0)
{
@@ -63,7 +63,7 @@
[self println:err];
return;
}
-
+
//
// Search for local network interfaces
//