From: guillaume Date: Fri, 23 May 2008 21:19:59 +0000 (+0000) Subject: Fix a wrong method declaration. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9ad18a1c528cf9b0007bce7f63a41fbafa919c48;p=users%2Fquan74%2Fpgadmin-import.git Fix a wrong method declaration. git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@7308 a7884b65-44f6-0310-8a51-81a127f17b15 --- diff --git a/pgadmin/include/ctl/ctlTree.h b/pgadmin/include/ctl/ctlTree.h index 59febc0b5..a8c8df58a 100644 --- a/pgadmin/include/ctl/ctlTree.h +++ b/pgadmin/include/ctl/ctlTree.h @@ -26,7 +26,7 @@ class ctlTree : public wxTreeCtrl { public: ctlTree(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTR_HAS_BUTTONS); - wxTreeItemId ctlTree::AppendItem(const wxTreeItemId& parent, const wxString& text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL); + wxTreeItemId AppendItem(const wxTreeItemId& parent, const wxString& text, int image = -1, int selImage = -1, wxTreeItemData* data = NULL); wxTreeItemId AppendObject(pgObject *parent, pgObject *object); void RemoveDummyChild(pgObject *obj); pgCollection *AppendCollection(pgObject *parent, pgaFactory &factory);