diff -r 092aa8fafa4e -r f6ccc31d6e72 Preferences/__init__.py --- a/Preferences/__init__.py Sat Jan 02 16:15:57 2010 +0000 +++ b/Preferences/__init__.py Sat Jan 02 17:09:08 2010 +0000 @@ -8,7 +8,7 @@ The preferences interface consists of a class, which defines the default values for all configuration items and stores the actual values. These -values are read and written to the eric4 preferences file by module +values are read and written to the eric5 preferences file by module functions. The data is stored in a file in a subdirectory of the users home directory. The individual configuration data is accessed by accessor functions defined on the module level. The module is simply imported wherever it is needed @@ -784,7 +784,7 @@ if not isWindowsPlatform(): hp = QtCore.QDir.homePath() dn = QtCore.QDir(hp) - dn.mkdir(".eric4") + dn.mkdir(".eric5") QtCore.QCoreApplication.setOrganizationName(settingsNameOrganization) QtCore.QCoreApplication.setApplicationName(settingsNameGlobal) @@ -1915,7 +1915,7 @@ font = prefClass.settings.value("Graphics/" + key, prefClass.graphicsDefaults[key]) if isinstance(font, QtGui.QFont): - # workaround for an old bug in eric4 < 4.4 + # workaround for an old bug in eric < 4.4 return font else: f = QtGui.QFont() @@ -2049,4 +2049,4 @@ return value initPreferences() -initRecentSettings() +initRecentSettings() \ No newline at end of file