Skip to content
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.

Commit

Permalink
Add a missing c_str()
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.pgadmin.org/branches/REL-1_8_0_PATCHES@7026 a7884b65-44f6-0310-8a51-81a127f17b15
  • Loading branch information
dpage committed Jan 31, 2008
1 parent 11c381a commit fa3792d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgadmin/schema/pgDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ void pgDatabase::ShowTreeDetail(ctlTree *browser, frmMain *form, ctlListView *pr
// Add child nodes if necessary
if (browser->GetChildrenCount(GetId(), false) == 0)
{
wxLogInfo(wxT("Adding child object to database %s"), GetIdentifier());
wxLogInfo(wxT("Adding child object to database %s"), GetIdentifier().c_str());

if (settings->GetDisplayOption(_("Catalogs")))
browser->AppendCollection(this, catalogFactory);
Expand Down

0 comments on commit fa3792d

Please sign in to comment.