diff options
author | mbkma <[email protected]> | 2021-02-20 09:45:59 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-03-22 23:31:26 +0100 |
commit | e3ea3965890dcbccc9a7d2958472f0ed46b872fc (patch) | |
tree | 5870952f65e051b8b6e1846c16ed73ea608babf7 /src/math-history.h | |
parent | 2dd5cac39d37c8f15ddc3d702e79bba11d8ad8ad (diff) | |
download | mate-calc-e3ea3965890dcbccc9a7d2958472f0ed46b872fc.tar.bz2 mate-calc-e3ea3965890dcbccc9a7d2958472f0ed46b872fc.tar.xz |
history view follows preferences
Diffstat (limited to 'src/math-history.h')
-rw-r--r-- | src/math-history.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/math-history.h b/src/math-history.h index 87dab7a..dc9349e 100644 --- a/src/math-history.h +++ b/src/math-history.h @@ -43,7 +43,7 @@ MathHistory * math_history_new(MathEquation *equation); void -math_history_insert_entry(MathHistory *history, char *equation, MPNumber *answer, int number_base); +math_history_insert_entry(MathHistory *history, char *equation, MPNumber *answer); gpointer math_history_get_entry_at(MathHistory *history, int index); @@ -57,6 +57,9 @@ math_history_get_current(MathHistory *history); void math_history_clear(MathHistory *history); +void +math_history_set_serializer(MathHistory *history, MpSerializer *serializer); + G_END_DECLS #endif /* MATH_HISTORY_VIEW_H */ |