Skip to content

Commit

Permalink
table: fix bad self.Properties reference in hasrownames
Browse files Browse the repository at this point in the history
  • Loading branch information
apjanke committed Feb 7, 2024
1 parent 7cbbc5c commit 0769bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/@table/table.m
Original file line number Diff line number Diff line change
Expand Up @@ -3533,5 +3533,5 @@ function summary_impl (this, format)
## @end deftypefn
function out = hasrownames (tbl)
#HASROWNAMES True if this table has row names defined
out = ! isempty (tbl.Properties.RowNames);
out = ! isempty (tbl.RowNames);
endfunction

0 comments on commit 0769bea

Please sign in to comment.