diff -r 8a7677a63c8d -r 68ec9c3d4de5 eric7/Preferences/ConfigurationPages/ProtobufPage.py --- a/eric7/Preferences/ConfigurationPages/ProtobufPage.py Sat May 22 17:01:51 2021 +0200 +++ b/eric7/Preferences/ConfigurationPages/ProtobufPage.py Sat May 22 18:51:46 2021 +0200 @@ -7,7 +7,7 @@ Module implementing the protobuf configuration page. """ -from E5Gui.E5PathPicker import E5PathPickerModes +from E5Gui.EricPathPicker import EricPathPickerModes from .ConfigurationPageBase import ConfigurationPageBase from .Ui_ProtobufPage import Ui_ProtobufPage @@ -27,12 +27,12 @@ self.setupUi(self) self.setObjectName("ProtobufPage") - self.protocPicker.setMode(E5PathPickerModes.OPEN_FILE_MODE) + self.protocPicker.setMode(EricPathPickerModes.OPEN_FILE_MODE) self.protocPicker.setToolTip(self.tr( "Press to select the Protobuf compiler via a file selection" " dialog.")) - self.grpcPythonPicker.setMode(E5PathPickerModes.OPEN_FILE_MODE) + self.grpcPythonPicker.setMode(EricPathPickerModes.OPEN_FILE_MODE) self.grpcPythonPicker.setToolTip(self.tr( "Press to select the Python interpreter containing the gRPC" " compiler via a file selection dialog."))