SVN Commit by dpage: r4879 - in trunk/pgadmin3: . src/frm

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by dpage: r4879 - in trunk/pgadmin3: . src/frm
Date: 2006-01-09 08:46:40
Message-ID: 200601090846.k098keqp022441@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

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);

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2006-01-09 08:47:06 SVN Commit by dpage: r4880 - branches/REL-1_4_0_PATCHES/pgadmin3
Previous Message svn 2006-01-09 08:45:15 SVN Commit by dpage: r4878 - in branches/REL-1_4_0_PATCHES/pgadmin3: . src/frm