Author: dpage
Date: 2006-01-09 08:46:40 +0000 (Mon, 09 Jan 2006)
New Revision: 4879
Modified:
trunk/pgadmin3/CHANGELOG.txt
trunk/pgadmin3/src/frm/frmExport.cpp
Log:
Set the initial Unicode/Local charset options correctly in the Export dialogue [Magnus Hagander]
Modified: trunk/pgadmin3/CHANGELOG.txt
===================================================================
--- trunk/pgadmin3/CHANGELOG.txt 2006-01-09 08:45:14 UTC (rev 4878)
+++ trunk/pgadmin3/CHANGELOG.txt 2006-01-09 08:46:40 UTC (rev 4879)
@@ -18,8 +18,9 @@
</ul>
<br>
<ul>
- <li>2005-12-26 AP 1.4.2 Fix PK detection in EditGrid [Andrus Moor]
- <li>2005-12-26 AP 1.4.2 Fix Bitmap Index explain [Alexander Kirpa]
+ <li>2006-01-09 DP 1.4.2 Set the initial Unicode/Local charset options correctly in the Export dialogue [Magnus
Hagander]
+ <li>2005-12-26 AP 1.4.2 Fix PK detection in EditGrid per Andrus Moor
+ <li>2005-12-26 AP 1.4.2 Fix Bitmap Index explain per Alexander Kirpa
<li>2005-12-23 DP 1.4.2 Use ELSIF not ELSEIF in pgagent.sql for compatibility with 7.x servers [Glen Sasek]
<li>2005-12-22 HS dlgLanguage name+comment, dlgDatabase comment
<li>2005-12-15 DP 1.4.2 Exclude system schemas by name rather than OID, so that 'public' can be safely renamed.
Modified: trunk/pgadmin3/src/frm/frmExport.cpp
===================================================================
--- trunk/pgadmin3/src/frm/frmExport.cpp 2006-01-09 08:45:14 UTC (rev 4878)
+++ trunk/pgadmin3/src/frm/frmExport.cpp 2006-01-09 08:46:40 UTC (rev 4879)
@@ -64,7 +64,7 @@
bool uc=settings->GetExportUnicode();
rbUnicode->SetValue(uc);
- rbLocal->SetValue(uc);
+ rbLocal->SetValue(!uc);
bool isCrLf=settings->GetExportRowSeparator() == wxT("\r\n");
rbCRLF->SetValue(isCrLf);