Setting Display Option causes a warning
Hi,
When trying to save the Options after disabling / enabling the check box related to 'Public synonyms' in the Display tab (in frmOptions), causes a warning.
Attached is a patch to resolve the issue.
Robins Tharakan
Index: pgadmin/utils/sysSettings.cpp
===================================================================
--- pgadmin/utils/sysSettings.cpp (revision 7237)
+++ pgadmin/utils/sysSettings.cpp (working copy)
@@ -334,6 +334,7 @@
else if (objtype == _("Catalogs")) engtype = wxT("Catalogs");
else if (objtype == _("Casts")) engtype = wxT("Casts");
else if (objtype == _("Languages")) engtype = wxT("Languages");
+ else if (objtype == _("Public synonyms")) engtype = wxT("Public synonyms");
else if (objtype == _("Schemas")) engtype = wxT("Schemas");
else if (objtype == _("Slony-I clusters")) engtype = wxT("Slony-I clusters");
else if (objtype == _("Aggregates")) engtype = wxT("Aggregates");
Home |
Main Index |
Thread Index