Skip to content

Commit

Permalink
CSSTUDIO-2070 Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahamwolk committed Nov 13, 2023
1 parent 444d1eb commit d03bd4a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

import org.csstudio.display.builder.editor.actions.ActionDescription;
import org.csstudio.display.builder.model.ModelPlugin;
import org.phoebus.ui.TooltipHelper;
import org.phoebus.ui.javafx.ApplicationWrapper;
import org.phoebus.ui.javafx.ImageCache;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import javafx.scene.paint.Color;
import org.phoebus.logbook.ui.LogbookUiPreferences;
import org.phoebus.logbook.ui.Messages;
import org.phoebus.ui.TooltipHelper;
import org.phoebus.util.time.TimestampFormats;

import java.net.URL;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import javafx.stage.Stage;
import org.phoebus.logbook.LogEntry;
import org.phoebus.logbook.ui.Messages;
import org.phoebus.ui.TooltipHelper;

import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import java.util.Optional;

import org.phoebus.logbook.ui.Messages;
import org.phoebus.ui.TooltipHelper;
import org.phoebus.ui.dialog.ListSelectionDialog;
import org.phoebus.ui.javafx.ImageCache;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import javafx.scene.paint.Color;
import javafx.util.Duration;
import javafx.util.converter.DefaultStringConverter;
import org.phoebus.ui.TooltipHelper;

/** Table cell
*
Expand Down Expand Up @@ -54,7 +55,7 @@ public void updateItem(final String item, final boolean empty)
{
cell = null;
setBorder(null);
TooltipHelper.setTooltip(, null);
TooltipHelper.setTooltip(this, null);
}
else
{
Expand All @@ -65,7 +66,7 @@ public void updateItem(final String item, final boolean empty)
{
cell = instance.getCell(col-1);
setBorder(cell.isEdited() ? EDITED : null);
TooltipHelper.setTooltip(, tooltip);
TooltipHelper.setTooltip(this, tooltip);
}
}
}
Expand Down

0 comments on commit d03bd4a

Please sign in to comment.