diff -r a081458cc57b -r 144a6b854f70 eric7/Network/IRC/IrcChannelWidget.py --- a/eric7/Network/IRC/IrcChannelWidget.py Sat May 22 19:52:34 2021 +0200 +++ b/eric7/Network/IRC/IrcChannelWidget.py Sat May 22 19:58:24 2021 +0200 @@ -20,8 +20,8 @@ QWidget, QListWidgetItem, QMenu, QApplication, QInputDialog, QLineEdit ) -from E5Gui import EricMessageBox, EricFileDialog -from E5Gui.EricApplication import ericApp +from EricWidgets import EricMessageBox, EricFileDialog +from EricWidgets.EricApplication import ericApp from .Ui_IrcChannelWidget import Ui_IrcChannelWidget @@ -1483,7 +1483,7 @@ """ Private slot to send a private message to a specific user. """ - from E5Gui import EricTextInputDialog + from EricWidgets import EricTextInputDialog user = self.usersList.selectedItems()[0].text() ok, message = EricTextInputDialog.getText( @@ -1497,7 +1497,7 @@ """ Private slot to send a query message to a specific user. """ - from E5Gui import EricTextInputDialog + from EricWidgets import EricTextInputDialog user = self.usersList.selectedItems()[0].text() ok, message = EricTextInputDialog.getText( @@ -1511,7 +1511,7 @@ """ Private slot to send a notice message to a specific user. """ - from E5Gui import EricTextInputDialog + from EricWidgets import EricTextInputDialog user = self.usersList.selectedItems()[0].text() ok, message = EricTextInputDialog.getText(