diff --git a/src/interfaces/libpq++/CHANGES b/src/interfaces/libpq++/CHANGES
index da473a61f505afc0684d273bf94bb97d3592736a..45ce0d0ac1f756cced06d9006a868495458cdb37 100644
--- a/src/interfaces/libpq++/CHANGES
+++ b/src/interfaces/libpq++/CHANGES
@@ -3,7 +3,6 @@
 ---------
 
 *	Rewrote libpq++.H
-*	Added CVS IDs
 *	Incremented shared library version to 3.0
 *	Cleaned up makefiles
 *	Made examples use the installed versions of the library and header
diff --git a/src/interfaces/libpq++/pgcursordb.h b/src/interfaces/libpq++/pgcursordb.h
index 1d8bad7f816e4651e5459345fd0e8e85428585ee..a324bca9301b9eaf2642f2967f875bf75ea19f92 100644
--- a/src/interfaces/libpq++/pgcursordb.h
+++ b/src/interfaces/libpq++/pgcursordb.h
@@ -13,7 +13,7 @@
  * Copyright (c) 1994, Regents of the University of California
  *
  *
- *  $Id: pgcursordb.h,v 1.2 1999/05/23 01:04:01 momjian Exp $
+ *  $Id: pgcursordb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -38,7 +38,7 @@ class PgCursor : public PgTransaction {
 public:
   PgCursor(const char* conninfo, const char* cursor);	// use reasonable & environment defaults
   // connect to the database with given environment and database name
-  PgCursor(const PgConnection&, const char* cursor);
+  //  PgCursor(const PgConnection&, const char* cursor);
   ~PgCursor();	// close connection and clean up
   
   // Commands associated with cursor interface
diff --git a/src/interfaces/libpq++/pgtransdb.h b/src/interfaces/libpq++/pgtransdb.h
index 80f17617e5ef05869240a64d31c8604c134e90c7..f873dd6156471a0461ed751a12e7cd2cc8181ad4 100644
--- a/src/interfaces/libpq++/pgtransdb.h
+++ b/src/interfaces/libpq++/pgtransdb.h
@@ -13,7 +13,7 @@
  * Copyright (c) 1994, Regents of the University of California
  *
  *
- *  $Id: pgtransdb.h,v 1.2 1999/05/23 01:04:03 momjian Exp $
+ *  $Id: pgtransdb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -35,7 +35,7 @@ class PgTransaction : public PgDatabase {
 public:
   PgTransaction(const char* conninfo);	// use reasonable & environment defaults
   // connect to the database with given environment and database name
-  PgTransaction(const PgConnection&);
+  // PgTransaction(const PgConnection&);
   ~PgTransaction();	// close connection and clean up
   
 protected: