summaryrefslogtreecommitdiff
path: root/plugins/Clist_nicer/SRC/rowheight_funcs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_nicer/SRC/rowheight_funcs.cpp')
-rw-r--r--plugins/Clist_nicer/SRC/rowheight_funcs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_nicer/SRC/rowheight_funcs.cpp b/plugins/Clist_nicer/SRC/rowheight_funcs.cpp
index 8328d3f7bb..25a7b6b68d 100644
--- a/plugins/Clist_nicer/SRC/rowheight_funcs.cpp
+++ b/plugins/Clist_nicer/SRC/rowheight_funcs.cpp
@@ -35,7 +35,7 @@
BOOL RowHeight::Init(ClcData *dat)
{
- dat->max_row_height = 0;
+ dat->rowHeight = 0;
dat->row_heights_size = 0;
dat->row_heights_allocated = 0;
dat->row_heights = NULL;
@@ -133,7 +133,7 @@ int RowHeight::getMaxRowHeight(ClcData *dat, const HWND hwnd)
max_height = max(max_height, dat->min_row_heigh);
max_height += cfg::dat.bRowSpacing;
- dat->max_row_height = max_height;
+ dat->rowHeight = max_height;
return max_height;
}