Skip to content

Commit

Permalink
Missing small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbinit committed May 12, 2023
1 parent 59ba4da commit ac454f8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion Document.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
}
@end


@interface MVDocument : NSDocument
{
IBOutlet MVOutlineView * leftView;
Expand Down
6 changes: 3 additions & 3 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<plist version="1.0">
<dict>
<key>CFBuildDate</key>
<string>Fri May 12 23:29:52 WEST 2023</string>
<string>Fri May 12 23:50:17 WEST 2023</string>
<key>CFBuildNumber</key>
<string>9387</string>
<string>9391</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDocumentTypes</key>
Expand Down Expand Up @@ -44,7 +44,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>9387</string>
<string>9391</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.developer-tools</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions ObjC.mm
Original file line number Diff line number Diff line change
Expand Up @@ -2214,7 +2214,7 @@ - (MVNode *)createObjC2Protocol64Node:(MVNode *)parent
//------------------------------------------------------------------------------
- (MVNode *)createObjC2ProtocolListNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
location:(uint64_t)location
protocols:(struct protocol_list_t const *)protocol_list_t
{
// check for parent
Expand Down Expand Up @@ -2275,7 +2275,7 @@ - (MVNode *)createObjC2ProtocolListNode:(MVNode *)parent
//------------------------------------------------------------------------------
- (MVNode *)createObjC2Protocol64ListNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint32_t)location
location:(uint64_t)location
protocols:(struct protocol64_list_t const *)protocol64_list_t
{
// check for parent
Expand Down
4 changes: 2 additions & 2 deletions SectionContents.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
length:(uint64_t)length
reloff:(uint64_t)reloff
nreloc:(uint32_t)nreloc
extreloff:(uint32_t)extreloff
extreloff:(uint64_t)extreloff
nextrel:(uint32_t)nextrel
locreloff:(uint32_t)locreloff
locreloff:(uint64_t)locreloff
nlocrel:(uint32_t)nlocrel;

@end
4 changes: 2 additions & 2 deletions SectionContents.mm
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@ - (MVNode *)createTextNode:(MVNode *)parent
length:(uint64_t)length
reloff:(uint64_t)reloff
nreloc:(uint32_t)nreloc
extreloff:(uint32_t)extreloff
extreloff:(uint64_t)extreloff
nextrel:(uint32_t)nextrel
locreloff:(uint32_t)locreloff
locreloff:(uint64_t)locreloff
nlocrel:(uint32_t)nlocrel
{
MVNodeSaver nodeSaver;
Expand Down

0 comments on commit ac454f8

Please sign in to comment.