44using LogExpert . Core . Interface ;
55using LogExpert . Dialogs ;
66using LogExpert . UI . Controls ;
7+ using LogExpert . UI . Interface ;
78using NLog ;
89
910namespace LogExpert . UI . Entities
@@ -29,7 +30,7 @@ internal static class PaintHelper
2930
3031 #region Public methods
3132
32- public static void CellPainting ( ILogPaintContext logPaintCtx , BufferedDataGridView gridView , int rowIndex ,
33+ public static void CellPainting ( ILogPaintContextUI logPaintCtx , BufferedDataGridView gridView , int rowIndex ,
3334 DataGridViewCellPaintingEventArgs e )
3435 {
3536 if ( rowIndex < 0 || e . ColumnIndex < 0 )
@@ -293,12 +294,12 @@ public static Rectangle BorderWidths(DataGridViewAdvancedBorderStyle advancedBor
293294
294295 #region Private Methods
295296
296- private static void PaintCell ( ILogPaintContext logPaintCtx , DataGridViewCellPaintingEventArgs e , BufferedDataGridView gridView , bool noBackgroundFill , HighlightEntry groundEntry )
297+ private static void PaintCell ( ILogPaintContextUI logPaintCtx , DataGridViewCellPaintingEventArgs e , BufferedDataGridView gridView , bool noBackgroundFill , HighlightEntry groundEntry )
297298 {
298299 PaintHighlightedCell ( logPaintCtx , e , gridView , noBackgroundFill , groundEntry ) ;
299300 }
300301
301- private static void PaintHighlightedCell ( ILogPaintContext logPaintCtx , DataGridViewCellPaintingEventArgs e , BufferedDataGridView gridView , bool noBackgroundFill , HighlightEntry groundEntry )
302+ private static void PaintHighlightedCell ( ILogPaintContextUI logPaintCtx , DataGridViewCellPaintingEventArgs e , BufferedDataGridView gridView , bool noBackgroundFill , HighlightEntry groundEntry )
302303 {
303304 object value = e . Value ?? string . Empty ;
304305
0 commit comments