SVN Commit by dpage: r4879 - in trunk/pgadmin3: . src/frm - Mailing list pgadmin-hackers

From svn@pgadmin.org
Subject SVN Commit by dpage: r4879 - in trunk/pgadmin3: . src/frm
Date
Msg-id 200601090846.k098keqp022441@developer.pgadmin.org
Whole thread Raw
List 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);


pgadmin-hackers by date:

Previous
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r4878 - in branches/REL-1_4_0_PATCHES/pgadmin3: . src/frm
Next
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r4880 - branches/REL-1_4_0_PATCHES/pgadmin3