Rename GlobalPreferences to GeneralPreferences

This commit is contained in:
blitzmann
2014-03-07 21:28:58 -05:00
parent e6bc831305
commit 652e0738af
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
__all__ = ["pyfaGlobalPreferences","pyfaHTMLExportPreferences","pyfaUpdatePreferences","pyfaProxyPreferences"]
__all__ = ["pyfaGeneralPreferences","pyfaHTMLExportPreferences","pyfaUpdatePreferences","pyfaProxyPreferences"]

View File

@@ -10,7 +10,7 @@ import service
import gui.globalEvents as GE
class PFGlobalPref ( PreferenceView):
class PFGeneralPref ( PreferenceView):
title = "General"
def populatePanel( self, panel ):
@@ -89,4 +89,4 @@ class PFGlobalPref ( PreferenceView):
def getImage(self):
return bitmapLoader.getBitmap("prefs_settings", "icons")
PFGlobalPref.register()
PFGeneralPref.register()