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

Commit

Permalink
Fix OID display issue, per Kris Jurka.
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.pgadmin.org/trunk@6516 a7884b65-44f6-0310-8a51-81a127f17b15
  • Loading branch information
gleu committed Jul 31, 2007
1 parent 4260317 commit fc6d3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgadmin/dlg/dlgProperty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ int dlgProperty::Go(bool modal)
if (txtName)
txtName->SetValue(GetObject()->GetName());
if (txtOid)
txtOid->SetValue(NumToStr((long)GetObject()->GetOid()));
txtOid->SetValue(NumToStr((unsigned long)GetObject()->GetOid()));
if (cbOwner)
cbOwner->SetValue(GetObject()->GetOwner());
if (txtComment)
Expand Down

0 comments on commit fc6d3a8

Please sign in to comment.