Skip to content

Commit

Permalink
Avoid label values when using LLVM
Browse files Browse the repository at this point in the history
  • Loading branch information
feeley committed Oct 17, 2011
1 parent ec92f75 commit 5666b63
Show file tree
Hide file tree
Showing 43 changed files with 32,219 additions and 1,580 deletions.
12 changes: 6 additions & 6 deletions configure
Expand Up @@ -2192,7 +2192,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
for ac_prog in i686-apple-darwin11-gcc-4.2.1 gcc cc for ac_prog in gcc cc
do do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
Expand Down Expand Up @@ -2236,7 +2236,7 @@ fi
fi fi
if test -z "$CC"; then if test -z "$CC"; then
ac_ct_CC=$CC ac_ct_CC=$CC
for ac_prog in i686-apple-darwin11-gcc-4.2.1 gcc cc for ac_prog in gcc cc
do do
# Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
Expand Down Expand Up @@ -2908,7 +2908,7 @@ ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_compiler_gnu=$ac_cv_c_compiler_gnu
# Try to avoid LLVM gcc
ac_ext=c ac_ext=c
ac_cpp='$CPP $CPPFLAGS' ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Expand Down Expand Up @@ -3159,7 +3159,7 @@ if test -z "$CXX"; then
CXX=$CCC CXX=$CCC
else else
if test -n "$ac_tool_prefix"; then if test -n "$ac_tool_prefix"; then
for ac_prog in i686-apple-darwin11-g++-4.2.1 g++ for ac_prog in g++
do do
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
Expand Down Expand Up @@ -3203,7 +3203,7 @@ fi
fi fi
if test -z "$CXX"; then if test -z "$CXX"; then
ac_ct_CXX=$CXX ac_ct_CXX=$CXX
for ac_prog in i686-apple-darwin11-g++-4.2.1 g++ for ac_prog in g++
do do
# Extract the first word of "$ac_prog", so it can be a program name with args. # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2 set dummy $ac_prog; ac_word=$2
Expand Down Expand Up @@ -3512,7 +3512,7 @@ ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
# Try to avoid LLVM gcc
ac_ext=cpp ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS' ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -77,14 +77,14 @@ if test "${LDFLAGS+set}" != set; then
fi fi


AC_LANG(C) AC_LANG(C)
AC_PROG_CC([i686-apple-darwin11-gcc-4.2.1 gcc cc]) # Try to avoid LLVM gcc AC_PROG_CC([gcc cc])
AC_PROG_CPP AC_PROG_CPP
C_COMPILER=$CC C_COMPILER=$CC
C_PREPROC=$CPP C_PREPROC=$CPP


if test "$ENABLE_CPLUSPLUS" = yes; then if test "$ENABLE_CPLUSPLUS" = yes; then
AC_LANG(C++) AC_LANG(C++)
AC_PROG_CXX([i686-apple-darwin11-g++-4.2.1 g++]) # Try to avoid LLVM gcc AC_PROG_CXX([g++])
AC_PROG_CXXCPP AC_PROG_CXXCPP
C_COMPILER=$CXX C_COMPILER=$CXX
C_PREPROC=$CXXCPP C_PREPROC=$CXXCPP
Expand Down
116 changes: 80 additions & 36 deletions examples/iOS/AccessoryView.xib
Expand Up @@ -2,9 +2,9 @@
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10"> <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
<data> <data>
<int key="IBDocument.SystemTarget">1056</int> <int key="IBDocument.SystemTarget">1056</int>
<string key="IBDocument.SystemVersion">10J869</string> <string key="IBDocument.SystemVersion">10K540</string>
<string key="IBDocument.InterfaceBuilderVersion">1305</string> <string key="IBDocument.InterfaceBuilderVersion">1305</string>
<string key="IBDocument.AppKitVersion">1038.35</string> <string key="IBDocument.AppKitVersion">1038.36</string>
<string key="IBDocument.HIToolboxVersion">461.00</string> <string key="IBDocument.HIToolboxVersion">461.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string> <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
Expand Down Expand Up @@ -197,13 +197,13 @@
<string key="NSResourceName">key-quote-46x42.png</string> <string key="NSResourceName">key-quote-46x42.png</string>
</object> </object>
</object> </object>
<object class="IBUIButton" id="420911439"> <object class="IBUIButton" id="47015903">
<reference key="NSNextResponder" ref="795231795"/> <reference key="NSNextResponder" ref="795231795"/>
<int key="NSvFlags">297</int> <int key="NSvFlags">297</int>
<string key="NSFrame">{{593, 2}, {46, 42}}</string> <string key="NSFrame">{{545, 2}, {46, 42}}</string>
<reference key="NSSuperview" ref="795231795"/> <reference key="NSSuperview" ref="795231795"/>
<reference key="NSWindow"/> <reference key="NSWindow"/>
<reference key="NSNextKeyView" ref="965625217"/> <reference key="NSNextKeyView" ref="420911439"/>
<object class="NSColor" key="IBUIBackgroundColor"> <object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">2</int> <int key="NSColorSpace">2</int>
<bytes key="NSRGB">MC42MTE3NjQ3MjkgMC42MDc4NDMxNjA2IDAuNjUwOTgwNDEzAA</bytes> <bytes key="NSRGB">MC42MTE3NjQ3MjkgMC42MDc4NDMxNjA2IDAuNjUwOTgwNDEzAA</bytes>
Expand All @@ -213,7 +213,11 @@
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string> <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<int key="IBUIContentHorizontalAlignment">0</int> <int key="IBUIContentHorizontalAlignment">0</int>
<int key="IBUIContentVerticalAlignment">0</int> <int key="IBUIContentVerticalAlignment">0</int>
<reference key="IBUIFont" ref="262793430"/> <object class="NSFont" key="IBUIFont">
<string key="NSName">CourierNewPS-BoldMT</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<string key="IBUINormalTitle">STOP</string> <string key="IBUINormalTitle">STOP</string>
<reference key="IBUIHighlightedTitleColor" ref="107046278"/> <reference key="IBUIHighlightedTitleColor" ref="107046278"/>
<object class="NSColor" key="IBUINormalTitleColor"> <object class="NSColor" key="IBUINormalTitleColor">
Expand All @@ -226,13 +230,13 @@
<string key="NSResourceName">key-stop-46x42.png</string> <string key="NSResourceName">key-stop-46x42.png</string>
</object> </object>
</object> </object>
<object class="IBUIButton" id="47015903"> <object class="IBUIButton" id="420911439">
<reference key="NSNextResponder" ref="795231795"/> <reference key="NSNextResponder" ref="795231795"/>
<int key="NSvFlags">297</int> <int key="NSvFlags">297</int>
<string key="NSFrame">{{545, 2}, {46, 42}}</string> <string key="NSFrame">{{593, 2}, {46, 42}}</string>
<reference key="NSSuperview" ref="795231795"/> <reference key="NSSuperview" ref="795231795"/>
<reference key="NSWindow"/> <reference key="NSWindow"/>
<reference key="NSNextKeyView" ref="420911439"/> <reference key="NSNextKeyView" ref="965625217"/>
<object class="NSColor" key="IBUIBackgroundColor"> <object class="NSColor" key="IBUIBackgroundColor">
<int key="NSColorSpace">2</int> <int key="NSColorSpace">2</int>
<bytes key="NSRGB">MC42MTE3NjQ3MjkgMC42MDc4NDMxNjA2IDAuNjUwOTgwNDEzAA</bytes> <bytes key="NSRGB">MC42MTE3NjQ3MjkgMC42MDc4NDMxNjA2IDAuNjUwOTgwNDEzAA</bytes>
Expand All @@ -242,22 +246,19 @@
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string> <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
<int key="IBUIContentHorizontalAlignment">0</int> <int key="IBUIContentHorizontalAlignment">0</int>
<int key="IBUIContentVerticalAlignment">0</int> <int key="IBUIContentVerticalAlignment">0</int>
<object class="NSFont" key="IBUIFont"> <reference key="IBUIFont" ref="262793430"/>
<string key="NSName">CourierNewPS-BoldMT</string> <string key="IBUINormalTitle">COMMA</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<string key="IBUINormalTitle">EDIT</string>
<reference key="IBUIHighlightedTitleColor" ref="107046278"/> <reference key="IBUIHighlightedTitleColor" ref="107046278"/>
<object class="NSColor" key="IBUINormalTitleColor"> <object class="NSColor" key="IBUINormalTitleColor">
<int key="NSColorSpace">2</int> <int key="NSColorSpace">2</int>
<bytes key="NSRGB">MC4yMzkyMTU3MDE4IDAuMjM5MjE1NzAxOCAwLjI0MzEzNzI3MDIAA</bytes> <bytes key="NSRGB">MC4yMzkyMTU3MDE4IDAuMjM5MjE1NzAxOCAwLjI0MzEzNzI3MDIAA</bytes>
</object> </object>
<reference key="IBUINormalTitleShadowColor" ref="811716299"/> <reference key="IBUINormalTitleShadowColor" ref="811716299"/>
<object class="NSCustomResource" key="IBUINormalImage"> <object class="NSCustomResource" key="IBUINormalImage" id="561697142">
<string key="NSClassName">NSImage</string> <string key="NSClassName">NSImage</string>
<string key="NSResourceName">key-edit-46x42.png</string> <string key="NSResourceName">key-comma-46x42.png</string>
</object> </object>
<reference key="IBUINormalBackgroundImage" ref="561697142"/>
</object> </object>
<object class="IBUIButton" id="949690578"> <object class="IBUIButton" id="949690578">
<reference key="NSNextResponder" ref="795231795"/> <reference key="NSNextResponder" ref="795231795"/>
Expand Down Expand Up @@ -1044,15 +1045,6 @@
</object> </object>
<int key="connectionID">161</int> <int key="connectionID">161</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchEventConnection" key="connection">
<string key="label">touch_up_F13:</string>
<reference key="source" ref="420911439"/>
<reference key="destination" ref="372490531"/>
<int key="IBEventType">7</int>
</object>
<int key="connectionID">162</int>
</object>
<object class="IBConnectionRecord"> <object class="IBConnectionRecord">
<object class="IBCocoaTouchEventConnection" key="connection"> <object class="IBCocoaTouchEventConnection" key="connection">
<string key="label">touch_up_QUOTE:</string> <string key="label">touch_up_QUOTE:</string>
Expand All @@ -1071,6 +1063,15 @@
</object> </object>
<int key="connectionID">164</int> <int key="connectionID">164</int>
</object> </object>
<object class="IBConnectionRecord">
<object class="IBCocoaTouchEventConnection" key="connection">
<string key="label">touch_up_COMMA:</string>
<reference key="source" ref="420911439"/>
<reference key="destination" ref="372490531"/>
<int key="IBEventType">7</int>
</object>
<int key="connectionID">165</int>
</object>
</object> </object>
<object class="IBMutableOrderedSet" key="objectRecords"> <object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects"> <object class="NSArray" key="orderedObjects">
Expand Down Expand Up @@ -1104,7 +1105,6 @@
<reference ref="933032107"/> <reference ref="933032107"/>
<reference ref="214816834"/> <reference ref="214816834"/>
<reference ref="965625217"/> <reference ref="965625217"/>
<reference ref="420911439"/>
<reference ref="47015903"/> <reference ref="47015903"/>
<reference ref="949690578"/> <reference ref="949690578"/>
<reference ref="237724049"/> <reference ref="237724049"/>
Expand All @@ -1118,6 +1118,7 @@
<reference ref="996814062"/> <reference ref="996814062"/>
<reference ref="305193239"/> <reference ref="305193239"/>
<reference ref="1057799585"/> <reference ref="1057799585"/>
<reference ref="420911439"/>
</object> </object>
<reference key="parent" ref="0"/> <reference key="parent" ref="0"/>
</object> </object>
Expand Down Expand Up @@ -1160,6 +1161,7 @@
<int key="objectID">57</int> <int key="objectID">57</int>
<reference key="object" ref="420911439"/> <reference key="object" ref="420911439"/>
<reference key="parent" ref="795231795"/> <reference key="parent" ref="795231795"/>
<string key="objectName">Button - COMMA</string>
</object> </object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">60</int> <int key="objectID">60</int>
Expand Down Expand Up @@ -1215,7 +1217,7 @@
<int key="objectID">118</int> <int key="objectID">118</int>
<reference key="object" ref="996814062"/> <reference key="object" ref="996814062"/>
<reference key="parent" ref="795231795"/> <reference key="parent" ref="795231795"/>
<string key="objectName">Button</string> <string key="objectName">Button - F2</string>
</object> </object>
<object class="IBObjectRecord"> <object class="IBObjectRecord">
<int key="objectID">121</int> <int key="objectID">121</int>
Expand Down Expand Up @@ -1388,7 +1390,7 @@
<reference key="dict.values" ref="0"/> <reference key="dict.values" ref="0"/>
</object> </object>
<nil key="sourceID"/> <nil key="sourceID"/>
<int key="maxID">164</int> <int key="maxID">165</int>
</object> </object>
<object class="IBClassDescriber" key="IBDocument.Classes"> <object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions"> <object class="NSMutableArray" key="referencedPartialClassDescriptions">
Expand All @@ -1400,6 +1402,7 @@
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>navigation_changed:</string>
<string>touch_down:</string> <string>touch_down:</string>
<string>touch_up_COMMA:</string> <string>touch_up_COMMA:</string>
<string>touch_up_DQUOTE:</string> <string>touch_up_DQUOTE:</string>
Expand Down Expand Up @@ -1451,12 +1454,14 @@
<string>id</string> <string>id</string>
<string>id</string> <string>id</string>
<string>id</string> <string>id</string>
<string>id</string>
</object> </object>
</object> </object>
<object class="NSMutableDictionary" key="actionInfosByName"> <object class="NSMutableDictionary" key="actionInfosByName">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>navigation_changed:</string>
<string>touch_down:</string> <string>touch_down:</string>
<string>touch_up_COMMA:</string> <string>touch_up_COMMA:</string>
<string>touch_up_DQUOTE:</string> <string>touch_up_DQUOTE:</string>
Expand Down Expand Up @@ -1484,6 +1489,10 @@
</object> </object>
<object class="NSMutableArray" key="dict.values"> <object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="IBActionInfo">
<string key="name">navigation_changed:</string>
<string key="candidateClassName">id</string>
</object>
<object class="IBActionInfo"> <object class="IBActionInfo">
<string key="name">touch_down:</string> <string key="name">touch_down:</string>
<string key="candidateClassName">id</string> <string key="candidateClassName">id</string>
Expand Down Expand Up @@ -1587,13 +1596,23 @@
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>accessoryView</string> <string>accessoryView</string>
<string>textView</string> <string>imageView0</string>
<string>webView</string> <string>imageView1</string>
<string>segmCtrl</string>
<string>textView0</string>
<string>textView1</string>
<string>webView0</string>
<string>webView1</string>
</object> </object>
<object class="NSMutableArray" key="dict.values"> <object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>UIView</string> <string>UIView</string>
<string>UIImageView</string>
<string>UIImageView</string>
<string>UISegmentedControl</string>
<string>UITextView</string> <string>UITextView</string>
<string>UITextView</string>
<string>UIWebView</string>
<string>UIWebView</string> <string>UIWebView</string>
</object> </object>
</object> </object>
Expand All @@ -1602,8 +1621,13 @@
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>accessoryView</string> <string>accessoryView</string>
<string>textView</string> <string>imageView0</string>
<string>webView</string> <string>imageView1</string>
<string>segmCtrl</string>
<string>textView0</string>
<string>textView1</string>
<string>webView0</string>
<string>webView1</string>
</object> </object>
<object class="NSMutableArray" key="dict.values"> <object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
Expand All @@ -1612,11 +1636,31 @@
<string key="candidateClassName">UIView</string> <string key="candidateClassName">UIView</string>
</object> </object>
<object class="IBToOneOutletInfo"> <object class="IBToOneOutletInfo">
<string key="name">textView</string> <string key="name">imageView0</string>
<string key="candidateClassName">UIImageView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">imageView1</string>
<string key="candidateClassName">UIImageView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">segmCtrl</string>
<string key="candidateClassName">UISegmentedControl</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">textView0</string>
<string key="candidateClassName">UITextView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">textView1</string>
<string key="candidateClassName">UITextView</string> <string key="candidateClassName">UITextView</string>
</object> </object>
<object class="IBToOneOutletInfo"> <object class="IBToOneOutletInfo">
<string key="name">webView</string> <string key="name">webView0</string>
<string key="candidateClassName">UIWebView</string>
</object>
<object class="IBToOneOutletInfo">
<string key="name">webView1</string>
<string key="candidateClassName">UIWebView</string> <string key="candidateClassName">UIWebView</string>
</object> </object>
</object> </object>
Expand Down Expand Up @@ -1644,8 +1688,8 @@
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys"> <object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool> <bool key="EncodedWithXMLCoder">YES</bool>
<string>key-comma-46x42.png</string>
<string>key-doublequote-46x42.png</string> <string>key-doublequote-46x42.png</string>
<string>key-edit-46x42.png</string>
<string>key-f1-46x42.png</string> <string>key-f1-46x42.png</string>
<string>key-f10-46x42.png</string> <string>key-f10-46x42.png</string>
<string>key-f11-46x42.png</string> <string>key-f11-46x42.png</string>
Expand Down
4 changes: 1 addition & 3 deletions examples/iOS/AppDelegate.m
Expand Up @@ -23,8 +23,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
[window addSubview:viewController.view]; [window addSubview:viewController.view];
[window makeKeyAndVisible]; [window makeKeyAndVisible];


viewController.keyboardSounds = -1;

return YES; return YES;
} }


Expand Down Expand Up @@ -73,7 +71,7 @@ Restart any tasks that were paused (or not yet started) while the
the background, optionally refresh the user interface. the background, optionally refresh the user interface.
*/ */


viewController.keyboardSounds = -1; // delay check of user preferences [viewController app_become_active];
} }




Expand Down
Binary file modified examples/iOS/GambitREPL.xcodeproj.tgz
Binary file not shown.

0 comments on commit 5666b63

Please sign in to comment.