Skip to content

Commit 9863d6e

Browse files
author
reverser
committedMar 2, 2014
Remove the LLVM option from Preferences.
1 parent e3bf89e commit 9863d6e

File tree

6 files changed

+262
-1323
lines changed

6 files changed

+262
-1323
lines changed
 

‎English.lproj/Layout.xib

+255-1,296
Large diffs are not rendered by default.

‎English.lproj/Preferences.xib

+3-16
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="4488.1" systemVersion="12E55" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
2+
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="4514" systemVersion="13C64" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
33
<dependencies>
44
<deployment defaultVersion="1070" identifier="macosx"/>
5-
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="4488.1"/>
5+
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="4514"/>
66
</dependencies>
77
<objects>
88
<customObject id="-2" userLabel="File's Owner" customClass="MVPreferenceController">
99
<connections>
1010
<outlet property="openAtLaunch" destination="iE9-IS-2YW" id="apb-xH-se5"/>
11-
<outlet property="useLLVMDisassembler" destination="53" id="73"/>
1211
<outlet property="window" destination="23" id="25"/>
1312
</connections>
1413
</customObject>
@@ -23,20 +22,8 @@
2322
<rect key="frame" x="0.0" y="0.0" width="474" height="241"/>
2423
<autoresizingMask key="autoresizingMask"/>
2524
<subviews>
26-
<button id="53">
27-
<rect key="frame" x="42" y="181" width="195" height="18"/>
28-
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
29-
<buttonCell key="cell" type="check" title="Use LLVM disassembler" bezelStyle="regularSquare" imagePosition="left" inset="2" id="54">
30-
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
31-
<font key="font" metaFont="system"/>
32-
</buttonCell>
33-
<connections>
34-
<action selector="toggleUseLLVMDisassembler:" target="-2" id="82"/>
35-
<binding destination="3" name="value" keyPath="values.UseLLVMDisassembler" id="81"/>
36-
</connections>
37-
</button>
3825
<button id="iE9-IS-2YW">
39-
<rect key="frame" x="42" y="153" width="232" height="18"/>
26+
<rect key="frame" x="18" y="188" width="232" height="18"/>
4027
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
4128
<buttonCell key="cell" type="check" title="Display open file menu at startup" bezelStyle="regularSquare" imagePosition="left" inset="2" id="rIK-aD-7Yv">
4229
<behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>

‎Info.plist

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<plist version="1.0">
44
<dict>
55
<key>CFBuildDate</key>
6-
<string>Sat Mar 1 22:10:40 IST 2014</string>
6+
<string>Sun Mar 2 11:03:37 IST 2014</string>
77
<key>CFBuildNumber</key>
8-
<string>9034</string>
8+
<string>9087</string>
99
<key>CFBundleDevelopmentRegion</key>
1010
<string>English</string>
1111
<key>CFBundleDocumentTypes</key>
@@ -44,7 +44,7 @@
4444
<key>CFBundleSignature</key>
4545
<string>????</string>
4646
<key>CFBundleVersion</key>
47-
<string>9034</string>
47+
<string>9087</string>
4848
<key>LSApplicationCategoryType</key>
4949
<string>public.app-category.developer-tools</string>
5050
<key>LSMinimumSystemVersion</key>

‎PreferenceController.h

-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@
88

99
@interface MVPreferenceController: NSWindowController
1010
{
11-
IBOutlet NSButton * useLLVMDisassembler;
1211
IBOutlet NSButton * openAtLaunch;
1312
}
1413

15-
- (IBAction)toggleUseLLVMDisassembler:(id)sender;
1614
- (IBAction)toggleOpenAtLaunch:(id)sender;
1715

1816
@end

‎PreferenceController.mm

-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ -(id)init
1818
return self;
1919
}
2020

21-
- (IBAction)toggleUseLLVMDisassembler:(id)sender
22-
{
23-
// qflag = ([useLLVMDisassembler state] == NSOnState);
24-
}
25-
2621
- (IBAction)toggleOpenAtLaunch:(id)sender
2722
{
2823
// nothing to do here?

‎machoview.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,10 @@
217217
children = (
218218
3CE90DFC11F6107600543402 /* README */,
219219
3C30845A11FDAF6F008A270F /* createdmg */,
220-
7B8FC37118C28651002F0B96 /* capstone */,
221220
080E96DDFE201D6D7F000001 /* machoview */,
222221
3C78CB26139EE44B006C9591 /* mach-o */,
223222
29B97315FDCFA39411CA2CEA /* main */,
223+
7B8FC37118C28651002F0B96 /* capstone */,
224224
29B97317FDCFA39411CA2CEA /* Resources */,
225225
29B97323FDCFA39411CA2CEA /* Frameworks */,
226226
19C28FACFE9D520D11CA2CBB /* Products */,

0 commit comments

Comments
 (0)