Thread: SVN Commit by dpage: r6240 - in trunk/pgadmin3: . pgadmin/frm pgadmin/include/frm

SVN Commit by dpage: r6240 - in trunk/pgadmin3: . pgadmin/frm pgadmin/include/frm

From
svn@pgadmin.org
Date:
Author: dpage

Date: 2007-04-30 12:09:51 +0000 (Mon, 30 Apr 2007)

New Revision: 6240

Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=6240&view=rev

Log:
Allow detection and conversion of line ending format in the query tool.


Modified:
   trunk/pgadmin3/CHANGELOG
   trunk/pgadmin3/pgadmin/frm/frmQuery.cpp
   trunk/pgadmin3/pgadmin/include/frm/frmQuery.h
   trunk/pgadmin3/pgadmin/include/frm/menu.h

svn@pgadmin.org a écrit :
> Author: dpage
>
> Date: 2007-04-30 12:09:51 +0000 (Mon, 30 Apr 2007)
>
> New Revision: 6240
>
> Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=6240&view=rev
>
> Log:
> Allow detection and conversion of line ending format in the query tool.
>
>
> Modified:
>    trunk/pgadmin3/CHANGELOG
>    trunk/pgadmin3/pgadmin/frm/frmQuery.cpp
>    trunk/pgadmin3/pgadmin/include/frm/frmQuery.h
>    trunk/pgadmin3/pgadmin/include/frm/menu.h
>

It seems to me that frmQuery.cpp misses the utffile.h header file. See
attached patch.

Regards.


--
Guillaume.
http://www.postgresqlfr.org
http://docs.postgresqlfr.org
Index: pgadmin/frm/frmQuery.cpp
===================================================================
--- pgadmin/frm/frmQuery.cpp    (révision 6242)
+++ pgadmin/frm/frmQuery.cpp    (copie de travail)
@@ -34,6 +34,7 @@
 #include "dlg/dlgAddFavourite.h"
 #include "dlg/dlgManageFavourites.h"
 #include "utils/favourites.h"
+#include "utils/utffile.h"
 #include "frm/frmReport.h"

 #include <wx/clipbrd.h>

Guillaume Lelarge wrote:
>
> It seems to me that frmQuery.cpp misses the utffile.h header file. See
> attached patch.

Thanks, applied.

Regards, Dave