Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 147519
Collapse All | Expand All

(-)src/include/pgFunction.h (-1 / +1 lines)
Lines 33-39 Link Here
33
    int GetIcon() { return PGICON_FUNCTION; }
33
    int GetIcon() { return PGICON_FUNCTION; }
34
    void ShowTreeDetail(wxTreeCtrl *browser, frmMain *form=0, ctlListView *properties=0, ctlSQLBox *sqlPane=0);
34
    void ShowTreeDetail(wxTreeCtrl *browser, frmMain *form=0, ctlListView *properties=0, ctlSQLBox *sqlPane=0);
35
    static pgObject *ReadObjects(pgCollection *collection, wxTreeCtrl *browser);
35
    static pgObject *ReadObjects(pgCollection *collection, wxTreeCtrl *browser);
36
    static pgFunction *pgFunction::AppendFunctions(pgObject *obj, pgSchema *schema, wxTreeCtrl *browser, const wxString &restriction);
36
    static pgFunction *AppendFunctions(pgObject *obj, pgSchema *schema, wxTreeCtrl *browser, const wxString &restriction);
37
37
38
    wxString GetFullName() const {return GetName()+wxT("(")+GetArgTypes()+wxT(")"); }
38
    wxString GetFullName() const {return GetName()+wxT("(")+GetArgTypes()+wxT(")"); }
39
    wxString GetArgTypeNames() const { return argTypeNames; }
39
    wxString GetArgTypeNames() const { return argTypeNames; }
(-)src/include/pgObject.h (-1 / +1 lines)
Lines 223-229 Link Here
223
    pgSchemaObject(pgSchema *newSchema, int newType, const wxString& newName = wxT("")) : pgDatabaseObject(newType, newName)
223
    pgSchemaObject(pgSchema *newSchema, int newType, const wxString& newName = wxT("")) : pgDatabaseObject(newType, newName)
224
        { tableOid=0; SetSchema(newSchema); wxLogInfo(wxT("Creating a pg") + GetTypeName() + wxT(" object")); }
224
        { tableOid=0; SetSchema(newSchema); wxLogInfo(wxT("Creating a pg") + GetTypeName() + wxT(" object")); }
225
225
226
    pgSchemaObject::~pgSchemaObject()
226
    ~pgSchemaObject()
227
        { wxLogInfo(wxT("Destroying a pg") + GetTypeName() + wxT(" object")); }
227
        { wxLogInfo(wxT("Destroying a pg") + GetTypeName() + wxT(" object")); }
228
228
229
    bool GetSystemObject() const;
229
    bool GetSystemObject() const;

Return to bug 147519