diff -r 6f415bf6340a -r 84eda8ff3b60 src/EditRecipe.h --- a/src/EditRecipe.h Thu Apr 07 20:20:42 2022 +0200 +++ b/src/EditRecipe.h Thu Apr 07 21:27:53 2022 +0200 @@ -227,12 +227,12 @@ * that belong with the loaded recipe data and are present to * make things easier. */ - int fermentables_current; ///< Current record, -1 is invalid. + int fermentables_row; ///< Current row, -1 is invalid. bool fermentables_use100; ///< Use percentages instead of amount - int hops_current; - int misc_current; - int yeasts_current; - int mashs_current; + int hops_row; + int misc_row; + int yeasts_row; + int mashs_row; }; @@ -285,7 +285,7 @@ QString bar_red = "QProgressBar::chunk {background: #FF0000;}"; QString bar_orange = "QProgressBar::chunk {background: #EB7331;}"; QString bar_green = "QProgressBar::chunk {background: #008C00;}"; - int recno, editrow; + int recno; bool textIsChanged = false; bool ignoreChanges = false; Recipe *recipe;