PGSchemaObject (PGA3)

From: efesar <efesar(at)nmia(dot)com>
To: Pgadmin-Hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: PGSchemaObject (PGA3)
Date: 2003-04-11 23:01:15
Message-ID: NGBBKFMOILMAGDABPFEGIEDCEDAA.efesar@nmia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers


It looks like there should be a function in PGSchemaObject or PGObject
called SetButtons, but it's not there. I did a full update and didn't get
anything. Cleaned, rebuilt all ...

Is something missing in CVS?

In the older Schema files, the function is this:

void pgLanguage::ShowTreeDetail(wxTreeCtrl *browser, frmMain *form,
wxListCtrl *properties, wxListCtrl *statistics, ctlSQLBox *sqlPane)
{
if (form)
form->SetButtons(true, true, true, true, false, false, false);
...
}

and in the new ones is this:

void pgOperator::ShowTreeDetail(wxTreeCtrl *browser, frmMain *form,
wxListCtrl *properties, wxListCtrl *statistics, ctlSQLBox *sqlPane)
{
SetButtons(form);
---
}

compile errors:

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgcheck.cpp(57) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgconversion.cpp(50) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgdomain.cpp(71) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgforeignkey.cpp(79) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgindex.cpp(78) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgoperator.cpp(64) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgoperatorclass.cpp(45) : error
C2065: 'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgrule.cpp(45) : error C2065:
'SetButtons' : undeclared identifier

c:\documents and settings\kay\my
documents\projects\pgadmin3\src\schema\pgsequence.cpp(81) : error C2065:
'SetButtons' : undeclared identifier

-Keith

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message efesar 2003-04-12 04:38:47 Query Builder (PGA3)
Previous Message Dave Page 2003-04-10 14:22:04 Re: PGA3 Bugs List