SVN Commit by dpage: r4900 - in branches/REL-1_4_0_PATCHES/pgadmin3: src/include xtra/pgagent/include

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by dpage: r4900 - in branches/REL-1_4_0_PATCHES/pgadmin3: src/include xtra/pgagent/include
Date: 2006-01-17 09:47:43
Message-ID: 200601170947.k0H9lhUb024914@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: dpage
Date: 2006-01-17 09:47:43 +0000 (Tue, 17 Jan 2006)
New Revision: 4900

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

Modified: branches/REL-1_4_0_PATCHES/pgadmin3/src/include/pgSchema.h
===================================================================
--- branches/REL-1_4_0_PATCHES/pgadmin3/src/include/pgSchema.h 2006-01-17 09:46:28 UTC (rev 4899)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/src/include/pgSchema.h 2006-01-17 09:47:43 UTC (rev 4900)
@@ -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: branches/REL-1_4_0_PATCHES/pgadmin3/xtra/pgagent/include/connection.h
===================================================================
--- branches/REL-1_4_0_PATCHES/pgadmin3/xtra/pgagent/include/connection.h 2006-01-17 09:46:28 UTC (rev 4899)
+++ branches/REL-1_4_0_PATCHES/pgadmin3/xtra/pgagent/include/connection.h 2006-01-17 09:47:43 UTC (rev 4900)
@@ -41,7 +41,7 @@
void Return();

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

protected:
static wxString basicConnectString;

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2006-01-17 09:49:35 Re: patch for pgadmin3
Previous Message svn 2006-01-17 09:46:29 SVN Commit by dpage: r4899 - in trunk/pgadmin3: src/include xtra/pgagent/include