Skip to content

Commit

Permalink
backend/cocoa: Fix incorrect member access
Browse files Browse the repository at this point in the history
  • Loading branch information
tseli0s committed Jan 17, 2024
1 parent 1387dd3 commit 4e41365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/cocoa/nvdialog_about_dialog.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ void nvd_about_dialog_set_licence_link_cocoa(NvdAboutDialog *dialog, const char

void nvd_show_about_dialog_cocoa(NvdAboutDialog *dialog)
{
[NSApp orderFrontStandardAboutPanelWithOptions: dialog->options];
[dialog->options release];
[NSApp orderFrontStandardAboutPanelWithOptions: dialog->raw];
[dialog->raw release];
}

0 comments on commit 4e41365

Please sign in to comment.