diff -r 22c3928a1ab5 -r 9ef616cd220d src/eric7/WebBrowser/SpeedDial/SpeedDial.py --- a/src/eric7/WebBrowser/SpeedDial/SpeedDial.py Wed Sep 25 14:07:40 2024 +0200 +++ b/src/eric7/WebBrowser/SpeedDial/SpeedDial.py Wed Sep 25 14:48:57 2024 +0200 @@ -19,7 +19,7 @@ qWarning, ) -from eric7 import Globals, Utilities +from eric7 import EricUtilities, Utilities from eric7.EricWidgets import EricMessageBox from eric7.Utilities.AutoSaver import AutoSaver @@ -158,14 +158,16 @@ @return name of the user agents file @rtype str """ - return os.path.join(Globals.getConfigDir(), "web_browser", "speedDial.xml") + return os.path.join( + EricUtilities.getConfigDir(), "web_browser", "speedDial.xml" + ) def __initialize(self): """ Private method to initialize the speed dial. """ self.__thumbnailsDirectory = os.path.join( - Globals.getConfigDir(), "web_browser", "thumbnails" + EricUtilities.getConfigDir(), "web_browser", "thumbnails" ) # Create directory if it does not exist yet if not os.path.exists(self.__thumbnailsDirectory):