SVN Commit by andreas: r4639 - in trunk/pgadmin3: . src/include src/schema

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by andreas: r4639 - in trunk/pgadmin3: . src/include src/schema
Date: 2005-11-02 00:34:11
Message-ID: 200511020034.jA20YBAA027052@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: andreas
Date: 2005-11-02 00:34:11 +0000 (Wed, 02 Nov 2005)
New Revision: 4639

Modified:
trunk/pgadmin3/CHANGELOG.txt
trunk/pgadmin3/src/include/version.h
trunk/pgadmin3/src/schema/pgTrigger.cpp
Log:
Fix crash in trigger property

Modified: trunk/pgadmin3/CHANGELOG.txt
===================================================================
--- trunk/pgadmin3/CHANGELOG.txt 2005-11-02 00:10:27 UTC (rev 4638)
+++ trunk/pgadmin3/CHANGELOG.txt 2005-11-02 00:34:11 UTC (rev 4639)
@@ -17,6 +17,7 @@
</ul>
<br>
<ul>
+ <li>2005-11-02 AP 1.4RC2 Fix crash in trigger property (r: Oriza Triznyak)
<li>2005-11-01 AP 1.4RC2 Fix function return type array (r: Andras Voros)
<li>2005-11-01 AP 1.4RC2 Fix query tool connect annoyance (r: Florian Pflug)
<li>2005-10-31 DP 1.4RC1 Fix eventlog output in pgAgent, per Paolo Saudin

Modified: trunk/pgadmin3/src/include/version.h
===================================================================
--- trunk/pgadmin3/src/include/version.h 2005-11-02 00:10:27 UTC (rev 4638)
+++ trunk/pgadmin3/src/include/version.h 2005-11-02 00:34:11 UTC (rev 4639)
@@ -11,7 +11,7 @@


// Application Versions
-#define VERSION_STR wxT("1.4 Release Candidate 1")
+#define VERSION_STR wxT("1.4 post-RC1")
#define VERSION_NUM 1,4,0,99
#define VERSION_PACKAGE 1.4-RC1
#define VERSION_SVN wxT("$Rev$")

Modified: trunk/pgadmin3/src/schema/pgTrigger.cpp
===================================================================
--- trunk/pgadmin3/src/schema/pgTrigger.cpp 2005-11-02 00:10:27 UTC (rev 4638)
+++ trunk/pgadmin3/src/schema/pgTrigger.cpp 2005-11-02 00:34:11 UTC (rev 4639)
@@ -23,7 +23,7 @@


pgTrigger::pgTrigger(pgTable *newTable, const wxString& newName)
-: pgTableObject(newTable, tableFactory, newName)
+: pgTableObject(newTable, triggerFactory, newName)
{
triggerFunction=0;
}

Browse pgadmin-hackers by date

  From Date Subject
Next Message Raphaël Enrici 2005-11-02 08:29:53 Re: Last call for pgAdmin Translations for 1.4.0!!
Previous Message Andreas Pflug 2005-11-02 00:12:50 Re: Hide databases