From 28e2a0e3ec71317c5c5e148cb055ce9ee28859f6 Mon Sep 17 00:00:00 2001 From: Jasmin Dizdarevic Date: Mon, 29 Apr 2013 17:52:02 +0200 Subject: [PATCH 3/3] Removed column header when just copying one cell from result grid --- pgadmin/ctl/ctlSQLGrid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgadmin/ctl/ctlSQLGrid.cpp b/pgadmin/ctl/ctlSQLGrid.cpp index dce2936..6846d91 100644 --- a/pgadmin/ctl/ctlSQLGrid.cpp +++ b/pgadmin/ctl/ctlSQLGrid.cpp @@ -261,7 +261,7 @@ int ctlSQLGrid::Copy() row = GetGridCursorRow(); col = GetGridCursorCol(); - AppendColumnHeader(str, col, col); + str.Append(GetExportLine(row, col, col)); copied = 1; -- 1.8.0.msysgit.0