diff options
| author | Peter LaFosse <peter@vector35.com> | 2019-10-02 15:30:21 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2019-10-02 15:30:25 -0400 |
| commit | 4cc5cc32319e6fca52dc2b44f8e416e67d8ae981 (patch) | |
| tree | 196b3c90bc89adaeb263d08cd14717aade7349b6 | |
| parent | caa24d3ef9345e98ccb7cdab410eaa19ee78d4cc (diff) | |
Fix typo in SymbolList sort settings
| -rw-r--r-- | ui/symbollist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/symbollist.h b/ui/symbollist.h index 31b6580f..c68fbcf9 100644 --- a/ui/symbollist.h +++ b/ui/symbollist.h @@ -25,10 +25,10 @@ class BINARYNINJAUIAPI SymbolListModel: public QAbstractItemModel, public Binary public: enum SortType { - SortAcendingAddresses, - SortDecendingAddresses, - SortAlphabeticallyAcending, - SortAlphabeticallyDecending + SortAscendingAddresses, + SortDescendingAddresses, + SortAlphabeticallyAscending, + SortAlphabeticallyDescending }; struct NamedObject |
