SVN Commit by dpage: r4899 - in trunk/pgadmin3: src/include xtra/pgagent/include - Mailing list pgadmin-hackers

From svn@pgadmin.org
Subject SVN Commit by dpage: r4899 - in trunk/pgadmin3: src/include xtra/pgagent/include
Date
Msg-id 200601170946.k0H9kThq024874@developer.pgadmin.org
Whole thread Raw
List pgadmin-hackers
Author: dpage
Date: 2006-01-17 09:46:28 +0000 (Tue, 17 Jan 2006)
New Revision: 4899

Modified:
   trunk/pgadmin3/src/include/pgSchema.h
   trunk/pgadmin3/xtra/pgagent/include/connection.h
Log:
Remove unneeded qualifications that GCC4.1 doesn't like. [Andy Burns]

Modified: trunk/pgadmin3/src/include/pgSchema.h
===================================================================
--- trunk/pgadmin3/src/include/pgSchema.h    2006-01-16 15:14:16 UTC (rev 4898)
+++ trunk/pgadmin3/src/include/pgSchema.h    2006-01-17 09:46:28 UTC (rev 4899)
@@ -85,7 +85,7 @@
     pgSchemaObject(pgSchema *newSchema, int newType, const wxString& newName = wxT("")) : pgDatabaseObject(newType,
newName)
         { SetSchema(newSchema); wxLogInfo(wxT("Creating a pg") + GetTypeName() + wxT(" object")); }

-    pgSchemaObject::~pgSchemaObject()
+    ~pgSchemaObject()
         { wxLogInfo(wxT("Destroying a pg") + GetTypeName() + wxT(" object")); }

     bool GetSystemObject() const;

Modified: trunk/pgadmin3/xtra/pgagent/include/connection.h
===================================================================
--- trunk/pgadmin3/xtra/pgagent/include/connection.h    2006-01-16 15:14:16 UTC (rev 4898)
+++ trunk/pgadmin3/xtra/pgagent/include/connection.h    2006-01-17 09:46:28 UTC (rev 4899)
@@ -41,7 +41,7 @@
     void Return();

 private:
-    bool DBconn::Connect(const wxString &connectString);
+    bool Connect(const wxString &connectString);

 protected:
     static wxString basicConnectString;


pgadmin-hackers by date:

Previous
From: "Dave Page"
Date:
Subject: Re: no copy from hints windows?
Next
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r4900 - in branches/REL-1_4_0_PATCHES/pgadmin3: src/include xtra/pgagent/include