diff options
| author | Josh F <josh@vector35.com> | 2021-09-10 19:08:05 -0400 |
|---|---|---|
| committer | Josh F <josh@vector35.com> | 2021-09-10 19:08:05 -0400 |
| commit | bcff937c4af87bbd0a9f65500563231f0a3c247a (patch) | |
| tree | fb7b4e031f30142f831ebb0c950e182e49a0a753 | |
| parent | ba03a559a42d4deab47be2f0ea794c82c08e75dd (diff) | |
Fix some typeview warnings
| -rw-r--r-- | ui/typeview.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/typeview.h b/ui/typeview.h index 5c29bdd7..07acf3c4 100644 --- a/ui/typeview.h +++ b/ui/typeview.h @@ -104,9 +104,9 @@ class BINARYNINJAUIAPI TypeView: public QAbstractScrollArea, public View, public int m_lineNumberAreaWidth = 0; int m_lineCount = 0; size_t m_systemTypesHidden = 0; - std::optional<size_t> m_showSystemTypesLine; + std::optional<int> m_showSystemTypesLine; size_t m_typesFiltered = 0; - std::optional<size_t> m_clearFilterLine; + std::optional<int> m_clearFilterLine; int m_cols, m_rows, m_paddingCols, m_offsetPaddingWidth; uint64_t m_maxOffset; size_t m_offsetWidth; |
