Log Message:
-----------
changed font handling to accept exotic weights
Modified Files:
--------------
pgadmin3/src/utils:
sysSettings.cpp (r1.59 -> r1.60)
Index: sysSettings.cpp
===================================================================
RCS file: /projects/pgadmin3/src/utils/sysSettings.cpp,v
retrieving revision 1.59
retrieving revision 1.60
diff -Lsrc/utils/sysSettings.cpp -Lsrc/utils/sysSettings.cpp -u -w -r1.59 -r1.60
--- src/utils/sysSettings.cpp
+++ src/utils/sysSettings.cpp
@@ -32,11 +32,6 @@
sysSettings::sysSettings(const wxString& name) : wxConfig(name)
{
- // Keith 2003.03.05
- // Can't do this because the logger is set up *after* syssettings
- // so nothing will be logged, and it causes a memory leak
- // wxLogInfo(wxT("Creating sSettings object and loading settings"));
-
// Tip Of The Day
Read(wxT("ShowTipOfTheDay"), &showTipOfTheDay, TRUE);
Read(wxT("NextTipOfTheDay"), &nextTipOfTheDay, 0);
@@ -181,7 +176,7 @@
void sysSettings::SetShowTipOfTheDay(const bool newval)
{
showTipOfTheDay = newval;
- Write(wxT("NextTipOfTheDay"), nextTipOfTheDay);
+ Write(wxT("NextTipOfTheDay"), showTipOfTheDay);
}
void sysSettings::SetNextTipOfTheDay(const int newval)
---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match