CVS Commit by andreas: small fix in EditGrid clipboard copy
require($_SERVER['DOCUMENT_ROOT']."/includes/top_config.php");
?>
CVS Commit by andreas: small fix in EditGrid clipboard copy
Log Message:
-----------
small fix in EditGrid clipboard copy
Modified Files:
--------------
pgadmin3/src/ui:
frmEditGrid.cpp (r1.52 -> r1.53)
Index: frmEditGrid.cpp
===================================================================
RCS file: /projects/pgadmin3/src/ui/frmEditGrid.cpp,v
retrieving revision 1.52
retrieving revision 1.53
diff -Lsrc/ui/frmEditGrid.cpp -Lsrc/ui/frmEditGrid.cpp -u -w -r1.52 -r1.53
--- src/ui/frmEditGrid.cpp
+++ src/ui/frmEditGrid.cpp
@@ -300,7 +300,7 @@
wxString str;
for (i=0 ; i < rows.GetCount() ; i++)
{
- str.Append(sqlGrid->GetTable()->GetExportLine(i));
+ str.Append(sqlGrid->GetTable()->GetExportLine(rows.Item(i)));
if (rows.GetCount() > 1)
str.Append(END_OF_LINE);
Home |
Main Index |
Thread Index